-
Notifications
You must be signed in to change notification settings - Fork 0
/
anr.html
53 lines (49 loc) · 1.76 KB
/
anr.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PSSCMUSM Management System</title>
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body id="anr">
<!--Header with title and PSSCMUSM logo-->
<header>
<div class="logo">
<img src="images/logo.png" alt="Logo">
</div>
<h1>PSSCMUSM Management System</h1>
</header>
<div class="container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="sdm.html">Student Data Management</a></li>
<li><a href="test_class.html">Test Result</a></li>
<li><a href="anr.html"class="active">Attendance & Records</a></li>
<li><a href="visual.html">Data Visualization</a></li>
</ul>
<button class="logout-btn">Logout</button>
</nav>
</div>
<!--Navigation header inside body-->
<div class="navigation-text">
Attendance & Records
</div>
<main>
<a href="attend.html" class="box attendance">
<h2>Attendance</h2>
<img src="images/attendance.png" alt="Attendance Icon">
<p><br>Start class session <br>to record attendance</p>
</a>
<a href="record.html" class="box records">
<h2>Records</h2>
<img src="images/records.png" alt="Records Icon">
<p><br>View past class<br> attendance records</p>
</a>
</main>
<!--Referring to external JavaScript file-->
<script src="script.js" defer></script>
</body>
</html>