-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13CountDownTimer.html
More file actions
38 lines (34 loc) · 1.15 KB
/
Copy path13CountDownTimer.html
File metadata and controls
38 lines (34 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CountDownTimer</title>
<link rel="stylesheet" href="CSS/13CountDownTimer.css">
</head>
<body>
<div class="timer-container">
<h1>Project Launch</h1>
<div class="countdown" id="countdown">
<div class="time-box">
<span class="value" id="days">00</span>
<span class="label">Days</span>
</div>
<div class="time-box">
<span class="value" id="hours">00</span>
<span class="label">Hours</span>
</div>
<div class="time-box">
<span class="value" id="minutes">00</span>
<span class="label">Minutes</span>
</div>
<div class="time-box">
<span class="value" id="seconds">00</span>
<span class="label">Seconds</span>
</div>
</div>
<div id="expiration-message">The countdown is over!</div>
</div>
<script src="JS/13CountDownTimer.js"></script>
</body>
</html>