-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="navbarContainer">
<div class="logo"><img src="./logo.svg" alt="" /></div>
<div class="navList">
<span>Sign up</span>
<span>About</span>
<span>Products</span>
<span>Pricing</span>
<span>Supports</span>
</div>
</div>
<div class="landingPageContainer">
<img src="./landing.png" alt="" />
</div>
<div class="textContainer">
<h1>Invest in everything</h1>
<h5>
Online platform to invest in stocks, derivatives, mutual funds, and more
Sign up now
</h5>
<button>Sign Up Now</button>
</div>
<div class="calculatorConatiner">
<h1 class="headText">Calculate Your Future Return</h1>
<div class="calculator">
<div class="inputFields">
<!-- input fields -->
<label for="">capital</label>
<input type="number" id="capital" /> <br />
<label for="">tenure</label>
<input type="number" id="tenure" /> <br />
<label for="">interest rate</label>
<input type="number" id="interestRate" /> <br />
</div>
<div class="resultBox">
<!-- result here -->
<p>Your Future return will be</p>
<h1 id="resultText"></h1>
</div>
</div>
<div class="btnContainer">
<button id="calculateReturns">Calculate Returns</button>
<button id="resetBtn">Reset</button>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>