-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (71 loc) · 3.57 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
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Age Counter by PXD / ProgrammerXD</title>
<meta name="description" content="A Simple & Sleek Age Counter to Count your Age upto 12 decimals in Real Time!">
<meta name="keywords" content="age counter, pxd, programmerxd, naman, age, counter, realpxd">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="ProgrammerXD">
<link rel="stylesheet" href="style.css" id="stylesheet">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="120x120" href="https://realpxd.github.io/age/assets/generated/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://realpxd.github.io/age/assets/generated/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://realpxd.github.io/age/assets/generated/favicon-16x16.png">
<link rel="manifest" href="https://realpxd.github.io/age/assets/generated/site.webmanifest">
<link rel="mask-icon" href="https://realpxd.github.io/age/assets/generated/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Primary Meta Tags -->
<meta name="title" content="Age Counter">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://realpxd.github.io/age/">
<meta property="og:title" content="Age Counter">
<meta property="og:description"
content="A Simple & Sleek Age Counter to Count your Age upto 12 decimals in Real Time!">
<meta property="og:image" content="https://realpxd.github.io/age/assets/birthday.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://realpxd.github.io/age/">
<meta property="twitter:title" content="Age Counter">
<meta property="twitter:description"
content="A Simple & Sleek Age Counter to Count your Age upto 12 decimals in Real Time!">
<meta property="twitter:image" content="https://realpxd.github.io/age/assets/birthday.jpg">
</head>
<body>
<button id="settingsIcon" class="settingsIcon">⚙</button>
<section class="firstLaunch" id="firstLaunch">
<div>
<h1>Age Counter</h1>
<p>How old are you?</p>
<form class="ageForm" id="ageForm">
<input type="date" name="date" id="dateIn" placeholder="dd-mm-yy" value="dd-mm-yy" required>
<input type="submit" value="Start Now !">
</form>
</div>
</section>
<section id="settings" class="settings">
<div class="settingsContainer">
<h2>Settings</h2>
<label class="switch">
Dark mode
<input type="checkbox" id="darkMode">
<span class="slider round"></span>
</label>
<h3>Change your bday :</h3>
<form class="settingsForm" id="settingsForm">
<input type="date" name="date" id="dateInUpdate" placeholder="dd-mm-yy" value="dd-mm-yy" required>
<input type="submit" value=" Apply ">
</form>
</div>
</section>
<main class="wrapper" id="wrapper">
<p id="monitor"></p><sup id="monitor2"></sup>
</main>
<script src="scripts.js" defer></script>
</body>
</html>