-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stock Manager</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
</head>
<body>
<audio id="profit" src="scam.mp3" type="audio/mpeg"></audio>
<audio id="loss" src="fail.mp3" type="audio/mpeg"></audio>
<audio id="gdluck" src="gdluck.wav" type="audio/wav"></audio>
<section class="content">
<h1> Share Market Stocks Info-Portal </h1>
<div class="input__div">
<label for="purchasedPrice">Purchased Price</label>
<input type="text" name="purchasedPrice" placeholder="Enter purchased stock price" >
</div>
<div class="input__div">
<label for="stockQnt">Stock Quantity</label>
<input type="text" name="stockQnt" placeholder="Enter quantity of stocks">
</div>
<div class="input__div">
<label for="currentPrice">Current Stock Price</label>
<input type="text" name="currentPrice" placeholder="Today's Stock Price" >
</div>
<button id="check" >Click to Check</button>
<p id="status"></p>
<div id="gif"></div>
</section>
<footer>
<div class="footer-content">
<p> $_% Coding for Fun /> @| NeogCamp </p>
<ul class="footer-list">
<li><a class="links" href="https://github.com/tausifaman222"><i class=' bx bxl-github'></i></a> </li>
<li><a class="links" href="https://twitter.com/aman_pubg"><i class=' bx bxl-twitter'></i></a></li>
<li><a class="links" href="https://www.linkedin.com/in/syed-tausif-ahmed-b7139b1b1"><i class='bx bxl-linkedin'></i></a></li>
</ul>
</div>
<p>copyright © 2021 TausifDCoder</p>
</footer>
</body>
<script type="text/javascript" src="index.js"></script>
</html>