-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 995 Bytes
/
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
<html>
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body><center>
<div id="box1">
<h1>Simple Interest Calculator</h1>
Amount <input type="number" id="principal"> <br/><br/>
Interest rate <input type="range" id ="rate" min="1" max="20" value="1"> <br/> <br/>
<label >No. of Years:</label>
<select id="years">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select> <br/> <br/>
<button id="result" onclick="compute()">Compute Interest</button> <br/><br/>
<label id="compute"></label>
<div> © Everyone Can Get Rich</div>
</div>
</body></center>
</html>