-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs20.html
More file actions
43 lines (34 loc) · 915 Bytes
/
js20.html
File metadata and controls
43 lines (34 loc) · 915 Bytes
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="interest.css"/>
</head>
<body>
<div class="calc">
<h2>Interest Calc</h2>
<p>
<label for="pamt">Principal Amount</label><br>
<input type="number" id="pamt" autofocus>
<span>₹</span>
</p>
<p>
<label for="time">Time</label><br>
<input type="number" id="time">
<span>Year(s)</span>
</p>
<p>
<label for="roi">Rate of Interest</label><br>
<input type="number" id="roi" >
<span>%</span>
</p>
<p align="center">
<button onclick="calcAmount()">Calc Amount </button>
</p>
<p align="right">
<output id="intAmt"></output><br>
<output id="totAmt"></output>
</p>
</div>
<script src="interest.js" href="interest.css"> </script>
<body>
<html>