-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (62 loc) · 2.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Vinay Tambey" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Life-Timer by VT</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<header>
<!-- --------------------- HEADING ------------------------ -->
<h1>Kindly Enter Your Date of Birth</h1>
<!-- --------------------- TIMER ------------------------ -->
<div class="timer hidden">
<div class="time-content">
<span id="yearsVal" class="time-val">00</span>
<span id="yearsTxt" class="time-txt">Years</span>
</div>
<div class="time-content">
<span id="monthsVal" class="time-val">00</span>
<span id="monthsTxt" class="time-txt">Months</span>
</div>
<div class="time-content">
<span id="daysVal" class="time-val">00</span>
<span id="daysTxt" class="time-txt">Days</span>
</div>
<div class="time-content">
<span id="hrsVal" class="time-val">00</span>
<span id="hrsTxt" class="time-txt">Hours</span>
</div>
<div class="time-content">
<span id="minsVal" class="time-val">00</span>
<span id="minsTxt" class="time-txt">Mins</span>
</div>
<div class="time-content">
<span id="secondsVal" class="time-val">00</span>
<span id="secondsTxt" class="time-txt">Seconds</span>
</div>
</div>
</header>
<!-- --------------------- BACKGROUND VIDEO ------------------------ -->
<video class="bg-video" muted autoplay loop>
<source src="assets/bg-video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- --------------------- ADD-DOB FIELD ------------------------ -->
<footer class="set-date">
<abbr title="GitHub"> <a href="https://github.com/VinayNoogler000/Life-Timer" target="_blank"> <i class="fa-brands fa-github"></i> </a> </abbr>
<abbr title="Set DOB" class="set-icon"> <i class="fa-solid fa-gear"></i> </abbr>
<form class="add-dob hidden">
<abbr title="Enter Your DOB"> <input type="date" id="dobInp" name="date" required> </abbr>
<button type="submit" id="dobBtn"> <abbr title="Submit Your DOB">Add DOB</abbr> </button>
</form>
</footer>
</main>
<!-- -------------------------SCRIPT TAGS---------------------------- -->
<script src="https://kit.fontawesome.com/3466756a59.js" crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>