-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Know Your Stocks</title>
</head>
<body>
<h1 class="heading">Check Profit/Loss on your Stock</h1>
<section class="section">
<div class="image">
<img src="./image/neutral.png" id="image_status" alt="stocks" class="header-img">
</div>
<form id="form" class="form-stock display-flex-column">
<div>
<label for="purchase_price">Purchase Price: </label>
<input type="number" class="input" id="purchase_price" required>
</div>
<div>
<label for="no_of_stocks">Stock Quantity: </label>
<input type="number" class="input" id="no_of_stocks" required>
</div>
<div>
<label for="current_price">Current Price: </label>
<input type="number" class="input" id="current_price" required>
</div>
<button class="submit-button" type="submit">Check</button>
</form>
</section>
<div id="output" class="output-div"></div>
<footer class="footer">
<a href="https://github.com/shraddha-1402" target="_blank" rel="noreferrer noopner" class="fa fa-github icon-sm">
</a>
<a href="https://twitter.com/ShraddhaGupta08" target="_blank" rel="noreferrer noopner"
class="fa fa-twitter icon-sm"></a>
<a href="https://www.linkedin.com/in/shraddha-1402/" target="_blank" rel="noreferrer noopner"
class="fa fa-linkedin icon-sm"></a>
</footer>
<script src="./main.js"></script>
</body>
</html>