-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
45 lines (42 loc) · 1.38 KB
/
timer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countdown Timer</title>
<!-- Link to External CSS -->
<link rel="stylesheet" href="timer.css">
</head>
<body>
<div class="container">
<h1>Countdown Timer</h1>
<!-- Input Section -->
<div class="input-section">
<label for="date-input">Select Target Date and Time:</label>
<input type="datetime-local" id="date-input">
<button id="start-button">Start Countdown</button>
</div>
<!-- Countdown Display -->
<div class="countdown">
<div class="time-segment">
<span id="days">00</span>
<span>Days</span>
</div>
<div class="time-segment">
<span id="hours">00</span>
<span>Hours</span>
</div>
<div class="time-segment">
<span id="minutes">00</span>
<span>Minutes</span>
</div>
<div class="time-segment">
<span id="seconds">00</span>
<span>Seconds</span>
</div>
</div>
</div>
<!-- Link to External JavaScript -->
<script src="timer.js"></script>
</body>
</html>