-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.84 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.84 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countdown App</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Video Background -->
<video class="video-background" loop muted autoplay>
<source src="ink.mp4">
</video>
<div class="video-overlay"></div>
<!-- Container -->
<div class="container">
<!-- Input -->
<div class="input-container" id="input-container">
<h1>Create a Countdown!</h1>
<form action="" class="form" id="countdownForm">
<label for="title">Title</label>
<input type="text" id="title" placeholder="What are you counting down to?">
<label for="date-picker">Select a Date</label>
<input type="date" id="date-picker">
<button type="submit" id="submit-countdown">Submit</button>
</form>
</div>
<!-- Countdown -->
<div class="countdown" id="countdown" hidden>
<h1 id="countdown-title">Countdown Title</h1>
<ul>
<li><span id="days">3</span>Days</li>
<li><span id="hours">3</span>Hours</li>
<li><span id="minutes">3</span>Minutes</li>
<li><span id="seconds">3</span>Seconds</li>
</ul>
<button id="countdown-button">Reset</button>
</div>
<!-- Complete -->
<div class="compete" id="complete" hidden>
<h1 class="complete-title">Countdown Complete</h1>
<h1 id="complete-info"></h1>
<button id="complete-button">New Countdown</button>
</div>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>