-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (32 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Age Timer</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="icon" href="https://img.icons8.com/ios/50/000000/clock--v3.png" type="image/x-icon">
</head>
<body>
<div class="wrapper">
<div class="content">
<div class="form-container">
<form id="age-form">
<div class="labelbox">
<label class="label" for="dob">When were you born?</label>
</div>
<div class="input-group">
<input type="date" id="dob" required />
<button type="submit">OK</button>
</div>
</form>
</div>
<div id="result" class="hidden"></div>
<div id="stopwatch" class="hidden"></div>
</div></div>
<script src="script.js"></script>
<footer class="minimalist-footer">
<p>© 2023 <a href="https://abduldavids.github.io/" target="_blank" class="github-link">Abdul Davids</a> | <a href="https://github.com/AbdulDavids/LifeTimer/" target="_blank" class="github-link">GitHub</a></p> </footer>
</body>
</html>