forked from kadjahoe/Javascript-Timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 1.33 KB
/
index.html
File metadata and controls
38 lines (36 loc) · 1.33 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Javascript Countdown Clock</title>
<meta name="Description" content="A javascript countdown clock or timer with beautiful HTML and CSS styling that is simple to use in any project or on any website .">
<meta name="Keywords" content="javascript, js, countdown, clock, timer, css, html, website, design, beautiful timer, countdown clock, countdown timer, javascript timer, javascript countdown clock, javascript countdown timer">
<link rel="stylesheet" type="text/css" href="timer.css">
</head>
<body>
<div class="display">
<div id="clock" class="clock">
<h1 class="event_title">Competition Starts in</h1>
<div id="numbers">
<span class="days"></span>
<span class="hours"></span>
<span class="minutes"></span>
<span class="seconds"></span>
</div>
<div id="units">
<span>Days</span>
<span>Hours</span>
<span>Minutes</span>
<span>Seconds</span>
</div>
</div>
<div id="door" class="hide">
<h1 class="event_title">Competition Is Live</h1>
<p class="action_caption">Click the button below to enter Live Stream</p>
<button class="call_to_action_button" type="button" onclick="liveStream()">Enter Live Stream!</button>
</div>
<div class="author">Created by Katherine Adjahoe</div>
</div>
<script src="timer.js"></script>
</body>
</html>