-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Christmas Countdown</title>
<link rel="shortcut icon" href="images/santa.png">
<link rel="stylesheet" href="style.css">
<script defer src="./script.js"></script>
</head>
<body>
<h1 id="text">CHRISTMAS WILL ARRIVE IN...</h1>
<div id="countdown" class="countdown">
<div class="time">
<h2 id="days" class="toHide"></h2>
<small class="toHide">Days</small>
</div>
<div class="time">
<h2 id="hours" class="toHide"></h2>
<small class="toHide">Hours</small>
</div>
<div class="time">
<h2 id="minutes" class="toHide"></h2>
<small class="toHide">Minutes</small>
</div>
<div class="time">
<h2 id="seconds" class="toHide"></h2>
<small class="toHide">Seconds</small>
</div>
</div>
</body>
</html>