-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Web App - Simple Interest Calculator</title>
<link type="text/css" href="style.css" rel="stylesheet ">
<script src="script.js"></script>
</head>
<body>
<div class="simple-interest">
<h1>Simple Interest Calculator</h1>
<table>
<tr><td>Amount:</td><td> <input id="amount" type="text"/></td></tr>
<tr><td>Interest Rate:</td><td> <input type="range" min="1" max="100" value="1" onchange="rateValue(this.value);"><span><output id="rateInput" >1</output>%</span></td></tr>
<tr><td>No. of Years</td><td> <select id="selectId" type="number">
<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></td></tr>
<tr>
<td><button onclick="calculate()">Compute Interest</button></td>
</tr>
</table>
<p id="resultat"></p>
<div>
<p>© Everyone Can Get Rich<p>
</div>
</div>
</body>
</html>