-
Notifications
You must be signed in to change notification settings - Fork 1
/
exam.html
115 lines (111 loc) · 3.74 KB
/
exam.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Dashboard</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Sharp" rel="stylesheet">
<link rel="shortcut icon" href="./images/logo.png">
<link rel="stylesheet" href="style.css">
<style>
body{overflow: hidden;}
header{position: relative;}
.exam{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 80vh;
width: 80%;
margin: auto;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="./images/logo.png" alt="">
<h2>U<span class="danger">M</span>S</h2>
</div>
<div class="navbar">
<a href="index.html">
<span class="material-icons-sharp">home</span>
<h3>Home</h3>
</a>
<a href="timetable.html" onclick="timeTableAll()">
<span class="material-icons-sharp">today</span>
<h3>Time Table</h3>
</a>
<a href="exam.html" class="active">
<span class="material-icons-sharp">grid_view</span>
<h3>Examination</h3>
</a>
<a href="password.html">
<span class="material-icons-sharp">password</span>
<h3>Change Password</h3>
</a>
<a href="#">
<span class="material-icons-sharp">logout</span>
<h3>Logout</h3>
</a>
</div>
<div id="profile-btn" style="display: none;">
<span class="material-icons-sharp">person</span>
</div>
<div class="theme-toggler">
<span class="material-icons-sharp active">light_mode</span>
<span class="material-icons-sharp">dark_mode</span>
</div>
</header>
<main>
<div class="exam timetable">
<h2>Exam Available</h2>
<table>
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>Subject</th>
<th>Room no.</th>
</tr>
</thead>
<tbody>
<tr>
<td>26 Nov 2022</td>
<td>09-12 AM</td>
<td>CAP283</td>
<td>38-718</td>
</tr>
<tr>
<td>28 Nov 2022</td>
<td>09-12 AM</td>
<td>CAP282</td>
<td>38-718</td>
</tr>
<tr>
<td>02 Dec 2022</td>
<td>09-12 AM</td>
<td>CAP267</td>
<td>34-509</td>
</tr>
<tr>
<td>06 Dec 2022</td>
<td>09-12 AM</td>
<td>CAP213</td>
<td>34-509</td>
</tr>
<tr>
<td>12 Dec 2022</td>
<td>09-12 AM</td>
<td>CAP214</td>
<td>34-509</td>
</tr>
</tbody>
</table>
</div>
</main>
</main>
</body>
<script src="app.js"></script>
</html>