-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EXAM DATE</title>
<link rel="stylesheet" href="./styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,600&display=swap"
rel="stylesheet"
/>
<script defer src="./scripts/index.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9FNEWYXN51"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9FNEWYXN51');
</script>
</head>
<body>
<section>
<h1 id="party">EXAM IN</h1>
<div class="countdown-container" id="counter">
<div class="element-container">
<p class="big-text" id="days">0</p>
<span>DAYS</span>
</div>
<div class="element-container">
<p class="big-text" id="hours">0</p>
<span>HOURS</span>
</div>
<div class="element-container">
<p class="big-text" id="minutes">0</p>
<span>MINUTES</span>
</div>
<div class="element-container">
<p class="big-text" id="seconds">0</p>
<span>SECONDS</span>
</div>
</div>
</section>
</body>
</html>