- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
60 lines (50 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
60 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
54
55
56
57
58
59
60
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Countdown</title>
<linkrel="icon" type="image/gif" href="jt.gif">
<linkrel="stylesheet" href="style.css">
</head>
<body>
<!-- Video Background -->
<videoclass="video-background" loopmutedautoplay>
<sourcesrc="Tibet.mp4"></source>
</video>
<divclass="video-overlay"></div>
<!-- Container -->
<divclass="container">
<!-- Input -->
<divclass="input-container" id="input-container">
<h1>Create a Custom Countdown!</h1>
<formclass="countdownForm" id="countdownForm">
<labelfor="title">Title</label>
<inputtype="text" id="title" placeholder="What are you counting down to?">
<labelfor="date-picker">Select a Date</label>
<inputtype="date" id="date-picker">
<buttontype="submit">Submit</button>
</form>
</div>
<!-- Countdown -->
<divclass="countdown" id="countdown" hidden>
<h1id='countdown-title'></h1>
<ul>
<li><span></span>Days</li>
<li><span></span>Hours</li>
<li><span></span>Minutes</li>
<li><span></span>Seconds</li>
</ul>
<buttonid="reset-button">Reset</button>
</div>
<!-- Complete -->
<divclass="complete" id="complete" hidden>
<h1class="complete-title">Countdown Complete!!</h1>
<h1id ="complete-info"></h1>
<buttonid="complete-button">New Countdown</button>
</div>
</div>
<!-- Script -->
<scriptsrc="script.js"></script>
</body>
</html>