-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.06 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Title</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
</head>
<body>
<main>
<header>
<p class="countdown">- countdown to -</p>
<p class="event">DIWALI</p>
</header>
<div class="timer">
<div class="time">
<p class="number" id="days">0</p>
<p class="caption">days</p>
</div>
<div class="time">
<p class="number" id="hours">0</p>
<p class="caption">hours</p>
</div>
<div class="time">
<p class="number" id="minutes">0</p>
<p class="caption">minutes</p>
</div>
<div class="time">
<p class="number" id="seconds">0</p>
<p class="caption">seconds</p>
</div>
</div>
</main>
</body>
</html>