-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Stock Calculator</title>
<meta charset="UTF-8" />
<link href="src/styles.css" rel="stylesheet" />
</head>
<body>
<div id="app" class="app">
<div class="container">
<h1 style="text-align: center; padding: 30px 0;">Stock-Counter</h1>
<h2 style="text-align: center;">
The Profit / Loss Calculator for Stocks
</h2>
</div>
<input
type="number"
class="costprice"
placeholder="Enter cost price"
required
/>
<input
type="number"
class="quantity"
placeholder="Enter quantity of stock"
required
/>
<input
type="number"
class="sellingprice"
placeholder="Enter selling price"
required
/>
<button class="check">Check</button>
<div class="result">
<p class="message"></p>
<img class="animated-gif" />
</div>
</div>
<p class="footer">Made with love by Sabiya.</p>
<script src="src/index.js"></script>
</body>
</html>