This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clock.html
42 lines (40 loc) · 1.43 KB
/
clock.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Clock :: The New Year Clock by Ben Hovinga</title>
<meta
name="keywords"
content="new, year, years, clock, timer, count, down, ben, hovinga, big, screen, dark, full, fullscreen"
/>
<meta
name="description"
content="The New Year Clock by Ben Hovinga is your way to countdown to the new year. Use it anywhere that supports JavaScript."
/>
<link rel="stylesheet" href="styles/clock.css" />
</head>
<body">
<div class="menu">
<a href="index.html">[HOME]</a> <a href="clock.html">[CLOCK]</a>
<a href="faq.html">[FAQ]</a>
</div>
<div class="sizepick">
Font Size:
<a href="javascript:fs.decrement();">[-5]</a>
<a href="javascript:fs.increment();">[+5]</a>
<a href="javascript:fs.set(50);">[50]</a>
<a href="javascript:fs.set(75);">[75]</a>
<a href="javascript:fs.set(100);">[100]</a>
<a href="javascript:fs.set(125);">[125]</a>
<a href="javascript:fs.set(150);">[150]</a>
<a href="javascript:fs.set(175);">[175]</a>
<a href="javascript:fs.set(200);">[200]</a>
<a href="javascript:fs.set(225);">[225]</a>
<a href="javascript:fs.set(250);">[250]</a>
</div>
<h1>New Year (<span id="next-year"></span>)</h1>
<p id="clock">Loading...</p>
<h4>(Days : Hours : Minutes : Seconds)</h4>
</body>
<script src="./javascript/app.js"></script>
</html>