-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 2.26 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/8c25178190.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="https://meilune.github.io/custom-countdown/style.css">
<title>LuAru Countdown</title>
<link rel="icon" type="image/x-icon" href="https://meilune.github.io/custom-countdown/hourglass.png"/>
</head>
<body>
<section>
<!-- Video Background -->
<video playsinline autoplay muted loop poster="">
<source src="https://meilune.github.io/custom-countdown/hourglass.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- Countdown Container -->
<div class="container">
<div class="input-container" id="input-container">
<h2 class="title" id="title">CHOOSE YOUR DEADLINE</h2>
<form class="form" id="countdownForm">
<label for="title">Title</label>
<input type="text" id="title" placeholder="What is your deadline called?">
<label for="date-picker"></label>
<input type="date" id="date-picker">
<button type="submit">SUBMIT</button>
</form>
</div>
<div class="countdown" id="countdown">
<h2 id="countdown-title"></h2>
<ul>
<li><span></span>Days</li>
<li><span></span>Hours</li>
<li><span></span>Minutes</li>
<li><span></span>Seconds</li>
</ul>
<button id="countdown-button">RESET</button>
</div>
<div class="complete" id="complete">
<h2 class="complete-title">COUNTDOWN COMPLETE!</h2>
<h2 class="" id="complete-info">Countdown Finished</br> on</br> <span></span> </h2>
<button id="complete-button">NEW COUNTDOWN</button>
</div>
</div>
</section>
<script type="text/javascript" src="https://meilune.github.io/custom-countdown/app.js"></script>
</body>
</html>