-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (32 loc) · 1.37 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
<!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>JS Simple Interest Calculator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Simple Interest Calculator</h2>
<div class="input-box-wrapper">
<span class="title">Amount</span>
<input type="range" name="amount" min="2000" max="300000" step="500" class="amount">
<!-- <span class="amount-value"></span> -->
<input type="text" name="amount-value" class="amount-value">
<span>Number of Years</span>
<input type="range" name="number-of-year" min="1" max="50" step="1" class="number-of-year">
<span class="year-value"></span>
<span>Interest Rate</span>
<input type="range" name="interest-rate" min="1" max="20" step="1" class="interest-rate">
<span class="interest-rate-value"></span>
</div>
<button class="interest-btn" type="submit">Calculate Interest</button>
<div class="total-interest">
<span></span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>