-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathintrest.html
More file actions
55 lines (43 loc) · 1.52 KB
/
intrest.html
File metadata and controls
55 lines (43 loc) · 1.52 KB
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
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intrest</title>
<link rel="stylesheet" href="css/intrest.css">
</head>
<body>
<div class="container">
<h1>Intrest Calculater</h1>
<br>
<form action="" onsubmit="handlSubmit()">
<div class="box">
<input type="text" name="Principle" id="P" placeholder="Please enter Amount">
<span id="PrincipleErr"></span>
<br><br>
<input type="text" name="rate" id="r" placeholder="Rate">
<span id="rateErr"></span>
<br><br>
<input type="text" name="time" id="time" placeholder="Time">
<span id="timeErr"></span>
<br><br>
<div class="sl">
<select name="select" id="select">
<option value="0">--Select--</option>
<option value="y">Year</option>
<option value="m">Mounth</option>
</select>
<span id="selectErr"></span>
</div>
<br>
<div class="su">
<input type="submit" name="Submit" id="submit">
</div>
</div>
</form>
<br>
<p>Intrest Is: <span id="total"></span></p>
</div>
<script src="js/intrest.js"></script>
</body>
</html>