-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.73 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 1.73 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!--!
@author Mohamed Muntasir
@link https://github.com/devmotheg
-->
<!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" />
<link rel="stylesheet" href="css/styles.css" />
<title>Countdown Timer</title>
</head>
<body>
<!-- Main -->
<main class="timer">
<!-- Header -->
<div class="timer__header">
<h1>Countdown Timer</h1>
</div>
<!-- Body -->
<div class="timer__body">
<div class="timer__days" data-digits="3" data-base="999" data-type="days">
<div class="timer__circle" data-time="999"></div>
<p>DAY(S)</p>
</div>
<div class="timer__hours" data-digits="2" data-base="23" data-type="hours">
<div class="timer__circle" data-time="23"></div>
<p>HOUR(S)</p>
</div>
<div class="timer__minutes" data-digits="2" data-base="59" data-type="minutes">
<div class="timer__circle" data-time="59"></div>
<p>MINUTE(S)</p>
</div>
<div class="timer__seconds" data-digits="2" data-base="59" data-type="seconds">
<div class="timer__circle" data-time="59"></div>
<p>SECOND(S)</p>
</div>
</div>
<!-- Footer -->
<div class="timer__footer">
<div>
<label for="timer__input">
Upcoming date:<br />(yyyy-mm-dd hh:mm)
<input id="timer__input" class="timer__input" type="text" placeholder="Enter upcoming date" maxlength="19" />
</label>
<button>START COUNTER!</button>
</div>
<a href="https://github.com/devmotheg">Designed by Mohamed Muntasir</a>
</div>
</main>
<script src="js/app.js"></script>
</body>
</html>