-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (57 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="./css/styles.css">
<title>Age Calculator</title>
</head>
<body class="flex">
<main class="grid">
<div class="container grid">
<h1><span class="gradient-underline">Age Calculator</span></h1>
<section class="entries flex">
<form class="grid" data-spacing="small" action="#">
<label class="grid month" data-spacing="small" for="month">MONTH
<input type="text" id="month" name="month" placeholder="MM" maxlength="2">
</label>
<p class="month"></p>
</form>
<form class="grid" data-spacing="small" action="#">
<label class="grid day" data-spacing="small" for="day">DAY
<input type="text" id="day" name="day" placeholder="DD" maxlength="2">
</label>
<p class="day"></p>
</form>
<form class="grid" data-spacing="small" action="#">
<label class="grid year" data-spacing="small" for="year">YEAR
<input type="text" id="year" name="year" placeholder="YYYY" maxlength="4">
</label>
<p class="year"></p>
</form>
</section>
<section class="divider flex">
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="44" viewBox="0 0 46 44">
<g fill="none" stroke="#FFF" stroke-width="2">
<path d="M1 22.019C8.333 21.686 23 25.616 23 44M23 44V0M45 22.019C37.667 21.686 23 25.616 23 44" />
</g>
</svg>
<div class="line"></div>
</section>
<section class="results">
<h2><span class="years purple">- -</span> <span class="years-text">years</span></h2>
<h2><span class="months purple">- -</span> <span class="months-text">months</span></h2>
<h2><span class="days purple">- -</span> <span class="days-text">days</span></h2>
</section>
</div>
</main>
<footer class="attribution">
Challenge by <a target="_blank" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a target="_blank" href="https://terrelljackson.vercel.app">TJ Jackson</a>.
</footer>
<script src="js/js-joda.js"></script>
<script src="js/script.js"></script>
</body>
</html>