-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (49 loc) · 1.6 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Attendence Reqiuremnt Calculator</title>
</head>
<body>
<script type = "module" src="script.js"></script>
<div style="padding: 10% 0;">
<h1 class="heading">Attendence Requirement Calculator</h1>
<div class="container ">
<form name="myForm" action="#">
<div class="row">
<div class="col-25">
<label for="attendence">Hours Attended</label>
</div>
<div class="col-75">
<input type="number" id="attendence" name="attendence" placeholder="Hours attended by student">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="totalHr">Hours Conducted</label>
</div>
<div class="col-75">
<input type="number" id="totalHr" name="Total" placeholder="Hours conducted by teacher ">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="reqPerce">Percentage Required</label>
</div>
<div class="col-75">
<input type="number" id="reqPerce" name="Percentage Required" placeholder="Percentage Reqiured..">
</div>
</div>
<output>
<p id="result" class="msg"></p>
</output>
<div align="center">
<button type="button" id="Calc">Calculate</button>
</div>
</form>
</div>
<div class="footer">Made with 🤍 by Tomin</div>
</div>
</body>
</html>