-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 934 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="image/fav.png" type="image/x-icon">
<title>Loan Calculator</title>
</head>
<body>
<div id="loancal">
<h1>Loan Calculator</h1>
<p>Loan Amount: $ <input id="amount" type="number" min="1" max="1000000000000" onchange="computeLoan()" required> </p>
<p>Interest Rate: % <input id="interest" type="number" min="0.1" max="100" step=".1" onchange="computeLoan()" required></p>
<p>Months To Pay: <input id="months" type="number" min="1" max="600" step="1" onchange="computeLoan()" required> </p>
<h2 id="payment"></h2>
<br>
</div>
<script src="script.js"></script>
</body>
</html>