-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.1 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Attendance Calculator</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<label class="switch">
<input type="checkbox" id="darkModeToggle" />
<span class="slider"></span>
Dark Mode
</label>
<h1>Attendance Calculator</h1>
<input type="number" id="totalClasses" placeholder="Total Classes Held" />
<input type="number" id="attendedClasses" placeholder="Classes Attended" />
<input type="number" id="expectedPercentage" placeholder="Target Attendance (%) (default 75)" />
<button onclick="calculateAttendance()">Calculate</button>
<button onclick="window.open('https://tech.kiet.edu/StudentPortal/#/dashboard', '_blank')"
class="portal-button">
Check KIET Attendance Portal
</button>
<div class="result" id="result">Your result will appear here...</div>
<!--<footer>Made by Arpit</footer>--!>
</div>
<script src="script.js"></script>
</body>
</html>