-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 2.16 KB
/
index.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
<!--
* exams: The clock used and projected during examinations in the main hall.
* <https://github.com/rgshw/exams/>
* Copyright (C) 2018 Matt Cowley (MattIPv4) ([email protected])
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, please see
* <https://github.com/rgshw/exams/blob/master/LICENSE> or <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>RGSHW Examination Clock</title>
<link rel="shortcut icon" href="https://rgshw.github.io/rgshw.png"/>
<link rel="stylesheet prefetch" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"/>
<link rel="stylesheet" href="style.min.css"/>
</head>
<body>
<section class="border-clock"></section>
<section class="clock">
<ul>
<li><i>12</i></li>
<li><i>1</i></li>
<li><i>2</i></li>
<li><i>3</i></li>
<li><i>4</i></li>
<li><i>5</i></li>
<li><i>6</i></li>
<li><i>7</i></li>
<li><i>8</i></li>
<li><i>9</i></li>
<li><i>10</i></li>
<li><i>11</i></li>
</ul>
<h2>RGSHW</h2>
<h3>Examination Clock</h3>
<output class="date"></output>
<div class="minutes"></div>
<div class="hours"></div>
<div class="seconds"></div>
<div class="center"></div>
</section>
<script src="https://rgshw.github.io/chromeCheck.min.js"></script>
<script src="https://rgshw.github.io/fullScreen.min.js"></script>
<script src="https://rgshw.github.io/controls.min.js"></script>
<script>controls("exams", true);</script>
<script src="script.min.js"></script>
</body>
</html>