-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (42 loc) · 1.53 KB
/
index.html
File metadata and controls
53 lines (42 loc) · 1.53 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
<!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">
<title>New Year Countdown</title>
<link rel="icon" type="image/x-icon" href="/favicon.png">
<link rel="stylesheet" href="Style.css">
<script src="script.js"></script>
</head>
<body>
<h1>New Year 2023</h1>
<div class="row-container">
<div class="countdown-container">
<div class="countdown-e days-c">
<p class="big-text" id="days">0</p>
<span>Days</span>
</div>
</div>
<div class="countdown-container">
<div class="countdown-e hours-c">
<p class="big-text" id="hours">0</p>
<span>Hours</span>
</div>
</div>
<div class="countdown-container">
<div class="countdown-e minutes-c">
<p class="big-text" id="minutes">0</p>
<span>Minutes</span>
</div>
</div>
<div class="countdown-container">
<div class="countdown-e seconds-c">
<p class="big-text" id="seconds">0</p>
<span>Seconds</span>
</div>
</div>
</div>
<footer>Made with ❤️ By Nelitha Priyawansha</footer>
</body>
</html>