-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (86 loc) · 4.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stocks : Profit/Loss</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/png" href="fav.ico.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="bg-nav">
<div class="nav">
<h1 class="heading">StonksXD</h1>
<a href="https://github.com/ZuberDunge/ProfitOrLoss">
<i class="fab fa-github"></i>
<span>
View on GitHub <i class="fas fa-external-link-alt"></i>
</span>
</a>
</div>
</div>
<main>
<div class="form">
<label for="initial-price">Initial Price<br>
<input required id="initial-price" type="number" placeholder="Initial Price" /></label>
<label for="stocks-quantity">Quanitity<br>
<input required id="stocks-quantity" type="number" placeholder="Number of stocks" /></label>
<label for="current-price">Current Price<br>
<input required id="current-price" type="number" placeholder="Current Price" /></label>
</div>
<div class="btn-flex">
<button id="reset-button">Reset</button>
<button id="check-button">Tell Me!!</button>
</div>
<div class="flex">
<div class="cover-img">
</div>
<div id="output-box" style="display: none;"></div>
</div>
<div id="process-box" style="display: none;"></div>
<div class="loading-img" style="display: none;">
<img src="https://www.scrolldroll.com/wp-content/uploads/2021/09/Jethalal-meme-templates-03.jpeg" alt="">
</div>
<div id="error-box" style="display: none;"></div>
</main>
<div class="flex margauto about-app">
<div class="hero-img"><img src="https://c.tenor.com/wjS2sXen8iMAAAAC/stonks-up-stongs.gif" alt="">
</div>
<div class="about"><span class="heading-name">Stock Return Calculator </span> This app shows how much profit
or
loss we are having on our
stocks. User
need to enter
stock
urchase price per unit, stock current price and stock units/quantity. App will show loss/profit in % and
absolute amount. </div>
</div>
<audio id="myAudio">
<source src="profit.mp3" type="audio/ogg">
</audio>
<div class="footer">
<footer>
<ul class="links social-links list-non-bullets">
<li class="list-item-inline icon-social"><a class="link" href="https://github.com/ZuberDunge"><i
class="fab fa-github social"></i></a></li>
<li class="list-item-inline icon-social"><a class="link" href="https://www.instagram.com/zuberdunge/"><i
class="fab fa-instagram social"></i></a></li>
<li class="list-item-inline icon-social"><a class="link"
href="https://www.linkedin.com/in/zuberdunge/"><i class="fab fa-linkedin-in social"></i></a>
</li>
<li class="list-item-inline icon-social"><a class="link" href="https://www.twitter.com/zuberdunge/"><i
class="fab fa-twitter social"></i></a></li>
<li class="list-item-inline icon-social"><a class="link" href="mailto:[email protected]"><i
class="fas fa-envelope social"></i></a></li>
<!-- <li class="list-item-inline icon-social"><a class="link" href="zuberdunge.hashnode.dev"><img class="social custom-icon" src="icons/hashnode.svg"></a></li> -->
</ul>
<p>© Made with Love 💕 by <span class="social"><strong> Zuber Dunge </strong></span></p>
</footer>
</div>
<script src="./app.js"></script>
</body>
</html>