-
Notifications
You must be signed in to change notification settings - Fork 1
/
timetable.html
75 lines (71 loc) · 2.5 KB
/
timetable.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
<!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">
</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" class="active" onclick="timeTableAll()">
<span class="material-icons-sharp">today</span>
<h3>Time Table</h3>
</a>
<a href="exam.html">
<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 style="margin: 0;">
<div class="timetable active" id="timetable">
<div>
<span id="prevDay"><</span>
<h2>Today's Timetable</h2>
<span id="nextDay">></span>
</div>
<table>
<thead>
<tr>
<th>Time</th>
<th>Room No.</th>
<th>Subject</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</main>
</body>
<script src="timeTable.js"></script>
<script src="app.js"></script>
</html>