We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd15f1 commit 22a90a2Copy full SHA for 22a90a2
index.html
@@ -1,16 +1,18 @@
1
+<!doctype html>
2
<html>
3
<head>
4
+ <title>Web App to compute Simple interest</title>
5
<script src="script.js"></script>
6
<link rel="stylesheet" href="style.css">
7
</head>
8
<body>
9
<h1>Simple Interest Calculator</h1>
10
- Amount <input type="number" id="principal"> <br/>
- Rate <input type="number" id="rate"> <br/>
11
- No. of Years <input type="number" id="years"> <br/>
+ <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/>
14
Interest : <span id="result"></span><br>
-
15
+"simple_interest_calc.html" 21L 542C written
16
<button onclick="compute()">Compute</button>
17
</body>
18
</html>
0 commit comments