-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.59 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Interest Calculator</title>
</head>
<body>
<div class="container">
<h1>Simple Interest Calculator</h1>
<div class="inpSection">
<div class="amt">
<label for="amount">Enter Total Amount: </label>
<input type="number" name="amount" id="amount" placeholder="Enter Total Amount">
</div>
<div class="time">
<label for="time">Enter Time: </label>
<input type="number" name="time" id="time" placeholder="Enter Time">
</div>
<div class="rate">
<label for="rate">Rate: </label>
<input type="number" name="rate" id="rate" placeholder="Enter Rate">
</div>
<div class="button">
<button onclick="Calculate()">Calculate</button>
</div>
<div class="result">
<h3 id="si"></h3>
</div>
</div>
</div>
</body>
<script>
function Calculate()
{
let p=document.getElementById('amount').value;
let t=document.getElementById('time').value;
let r=document.getElementById('rate').value;
let SI=(p*t*r)/100;
document.getElementById('si').innerHTML="The Total Simple Interest Is: "+SI;
}
</script>
</html>