-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (62 loc) · 2.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Eduardo de la Cruz Palacios" />
<meta name="description" content="Countdown Timer" />
<meta name="keywords" content="Countdown Timer" />
<meta name="copyright" content="Eduardo de la Cruz Palacios" />
<title>Countdown Timer</title>
<link rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
</head>
<body>
<section id="heroImage">
<h1>Countdown Timer</h1>
<div id="setup"></div>
<p id="errormsg"></p>
<div id="progressBar">
<p>Progress: <span id="percentage"></span></p>
<div id="bar">
<div id="progress"></div>
</div>
</div>
<div class="container" id="count">
<div class="unit">
<p id="decades" class="countDownNumber"></p>
<p class="text">decades</p>
</div>
<div class="unit">
<p id="years" class="countDownNumber"></p>
<p class="text">years</p>
</div>
<div class="unit">
<p id="days" class="countDownNumber"></p>
<p class="text">days</p>
</div>
<div class="unit">
<p id="hours" class="countDownNumber"></p>
<p class="text">hours</p>
</div>
<div class="unit">
<p id="minutes" class="countDownNumber"></p>
<p class="text">minutes</p>
</div>
<div class="unit">
<p id="seconds" class="countDownNumber"></p>
<p class="text">seconds</p>
</div>
<div class="unit">
<p id="milliseconds" class="countDownNumber"></p>
<p class="text">milliseconds</p>
</div>
</div>
<div id="refreshconfig">
<label for="">Refresh time (milliseconds):</label>
<input type="number" id="refresh" min="1" placeholder="1">
</div>
</section>
</body>
</html>