This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.htm
92 lines (84 loc) · 2.81 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>Awesome Class Time Table</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/classTimeTable.css">
<link rel="stylesheet" href="lib/Bootstrap/css/bootstrap.min.css">
<!-- iconj.com animated favicon code -->
<link rel="shortcut icon" href="http://www.iconj.com/icon.php?pid=le549zpffd" type="image/x-icon" />
<link rel="icon" href="http://www.iconj.com/gif_icon.php?pid=le549zpffd" type="image/gif" />
<!-- end of iconj.com animated favicon code -->
<!-- Google Analytics -->
<script src="js/gtag.js"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand mx-auto text-center" href="https://bksahu.github.io/"><i class="fas fa-graduation-cap"></i>
Awesome Class Time Table
<br><small class="text-muted">Created with <i class="fas fa-heart"></i> by bksahu</small>
</a>
</nav>
<!-- Main -->
<div class="container-fluid">
<div class="row main text-center">
<div class="col-12 className" id="nextClass">
No Class, Yay! <i class="far fa-smile"></i>
</div>
<div class="col-12">
<div class="row">
<div class="col text-primary" id="hours">00 h</div>
<div class="col text-success" id="minutes">00 m</div>
<div class="col text-danger" id="seconds">00 s</div>
</div>
</div>
</div>
</div>
<!-- Table -->
<table class="table table-dark text-center table-bordered">
<thead>
<tr>
<th class="tableHead text-info" colspan="6" id="today">Today</th>
</tr>
</thead>
<tbody>
<tr>
<th colspan="1">Time</th>
<th colspan="5">Subject</th>
</tr>
<tr>
<th scope="row">9:00 - 10:00</th>
<td colspan="5" id="nine">No Class, Yay!</td>
</tr>
<tr>
<th scope="row">10:00 - 11:00</th>
<td colspan="5" id="ten">No Class, Yay!</td>
</tr>
<tr>
<th scope="row">11:00 - 12:00</th>
<td colspan="5" id="eleven">No Class, Yay!</td>
</tr>
<tr>
<th scope="row">12:00 - 01:00</th>
<td colspan="5" id="twelve">No Class, Yay!</td>
</tr>
<tr>
<th scope="row">02:00 - 05:00*</th>
<td colspan="5" id="two">No Class, Yay!</td>
</tr>
</tbody>
</table>
<!-- Info -->
<div class="container-fluid bg-dark info">
<div class="row text-center">
<div class="col">
<h6 class="text-warning"><i class="fas fa-exclamation-circle"></i> *On Saturdays class ends at 03:00</h6>
</div>
</div>
</div>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script src="js/classTimeTable.js"></script>
</body>
</html>