-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtimer.html
51 lines (43 loc) · 1.53 KB
/
timer.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="SCP Wiki Timer instance">
<meta name="keywords" content="scp,wiki,timer">
<link rel="stylesheet" href="/timer/timer.css">
<script src="/timer/timer.js"></script>
<title>Timer (initializing...)</title>
</head>
<body>
<noscript>This application requires Javascript to function.</noscript>
<div id="timer">
<h2 id="title"></h2>
<div id="clock">
<div id="years-div" class="unit">
<span id="years" class="unit-value"></span>
<span id="years-label" class="unit-label"></span>
</div>
<div id="months-div" class="unit">
<span id="months" class="unit-value"></span>
<span id="months-label" class="unit-label"></span>
</div>
<div id="days-div" class="unit">
<span id="days" class="unit-value"></span>
<span id="days-label" class="unit-label"></span>
</div>
<div id="hours-div" class="unit">
<span id="hours" class="unit-value"></span>
<span id="hours-label" class="unit-label"></span>
</div>
<div id="minutes-div" class="unit">
<span id="minutes" class="unit-value"></span>
<span id="minutes-label" class="unit-label"></span>
</div>
<div id="seconds-div" class="unit">
<span id="seconds" class="unit-value"></span>
<span id="seconds-label" class="unit-label"></span>
</div>
</div>
</div>
</body>
</html>