-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User-Set Countdown Clock</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
</head>
<body>
<div class="countdown-container">
<h1 class="countdown-title">Set Your Countdown</h1>
<div class="input-container">
<input type="datetime-local" id="datetime-input">
<button id="start-countdown">Start Countdown</button>
</div>
<div class="countdown-clock">
<div class="countdown-item">
<span id="days">00</span>
<span>Days</span>
</div>
<div class="countdown-item">
<span id="hours">00</span>
<span>Hours</span>
</div>
<div class="countdown-item">
<span id="minutes">00</span>
<span>Minutes</span>
</div>
<div class="countdown-item">
<span id="seconds">00</span>
<span>Seconds</span>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>