-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
56 lines (46 loc) · 1.46 KB
/
app.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
<!DOCTYPE html>
<html>
<head>
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="Images\favicon\circle.png"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123605982-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123605982-1');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ossama Mehmood | Age Timer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form id="choose" style="display: none;">
<h1 id="dob" class="age-label">When were you born?</h1>
<footer>
<input type="date" name="dob" id="dob-input">
<button type="submit" id="submit">Motivate</button>
</footer>
</form>
<div id="timer" style="display: none;">
<h1 class="age-label">AGE</h1>
<h2 class="count" id="age"></h2>
</div>
<div id="cite">
<h6>Adapted Motivation by
<a href="https://ossamamehmood.github.io">
ossamamehmood
</a>
</h6>
</div>
</body>
</html>