Skip to content

Commit 22a90a2

Browse files
committed
modified index.html
1 parent cfd15f1 commit 22a90a2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
<!doctype html>
12
<html>
23
<head>
4+
<title>Web App to compute Simple interest</title>
35
<script src="script.js"></script>
46
<link rel="stylesheet" href="style.css">
57
</head>
68
<body>
79
<h1>Simple Interest Calculator</h1>
810

9-
Amount <input type="number" id="principal"> <br/>
10-
Rate <input type="number" id="rate"> <br/>
11-
No. of Years <input type="number" id="years"> <br/>
11+
<input type="number" id="principal"> Amount <br/>
12+
<input type="number" id="rate"> Rate <br/>
13+
<input type="number" id="years"> No. of Years <br/>
1214
Interest : <span id="result"></span><br>
13-
15+
"simple_interest_calc.html" 21L 542C written
1416
<button onclick="compute()">Compute</button>
1517
</body>
1618
</html>

0 commit comments

Comments
 (0)