-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.03 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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Loan Calculator - BY NIDHI UPMAN</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<div>
<div>
<center>
<h1>Loan Calculator - BY NIDHI UPMAN</h1>
</center>
</div>
<body>
<div class="container">
<h1>Loan Calculator</h1>
<div class="wrapper">
<div>
<p>Loan Amount (₹)</p>
<input id="amount" type="number">
</div>
<div>
<p>Interest Rate (%)</p>
<input id="interest" type="number">
</div>
<div>
<p>Tenure (in months)</p>
<input id="tenure" type="number">
</div>
</div>
<h2 id="emi"></h2>
<h2 id="totalAmount"></h2>
<h2 id="totalInterest"></h2>
</div>
</div>
</body>
</div>
</html>