generated from ibm-developer-skills-network/coding-project-template
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.1 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<div class="maindiv"
<br>
<h1> Simple Interest Calculator
</h1>
Amount
<input type="number" id="principal"
</br>
<br> Interest Rate
<class="slidecontainer">
<input type="range" min="1" max="20" step="0.25"
value="10.25" class="slider" id="myRange">
<span id="demo">
</span>
<br> No. of Years <select id="years"> <option value="1">1
<option value="2">2<option value="3">3<option value="4">4
<option value="5">5<option value="6">6<option value="7">7
<option value="8">8<option value="9">9<option value="10">10
</option>
<br>
</select> <br/>
<button onclick="compute()">Compute Interest</button>
<span id="result">
</span> <br/>
<p id="log"></p>
<footer>
© This Calculator belongs to Agape
</footer>
</div>
</body>
</html>