-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Year</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<main class="new-year">
<h1 class="title">New Year</h1>
<div class="countdown">
<div class="list">
<p class="timer days">0</p>
<span class="unit-days">days</span>
</div>
<div class="list">
<p class="timer hours">0</p>
<span class="unit-hours">hours</span>
</div>
<div class="list">
<p class="timer minutes">0</p>
<span class="unit-minutes">minutes</span>
</div>
<div class="list">
<p class="timer seconds">0</p>
<span class="unit-seconds">seconds</span>
</div>
</div>
</main>
<script src="./js/script.js"></script>
</body>
</html>