-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.33 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Javascript Countdown Timer</title>
<meta name="Description" content="A javascript countdown 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="style.css">
</head>
<body>
<img id="background-image">
<div id="panel">
<div id="clock">
<span id="hours">
<div id="hours-number" class="number">00</div>
<div class="units">hours</div>
</span>
<span id="minutes">
<div id="minutes-number" class="number">00</div>
<div class="units">minutes</div>
</span>
<span id="seconds">
<div id="seconds-number" class="number">00</div>
<div class="units">seconds</div>
</span>
</div>
<div id="tool-bar">
<input type="number" id="timer-input">
<button class="button" id="button" type="button" onclick="initTimer()">Start</button>
</div>
</div>
<div id="footer">
<select id="theme-dropdown" onchange="updateTheme()"></select>
</div>
<script src="themes.js"></script>
<script src="timer.js"></script>
</body>
</html>