-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.62 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
<!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="styles.css" />
<title>Frontend Mentor | Age calculator app</title>
</head>
<body>
<div class="main-container">
<form class="form-container">
<div class="input-container">
<label for="day" class="form-label">DAY</label>
<input type="number" class="input-day" id="day" required />
<small class="error-day"></small>
</div>
<div class="input-container">
<label for="month" class="form-label">MONTH</label>
<input type="number" class="input-month" id="month" />
<small class="error-month"></small>
</div>
<div class="input-container">
<label for="year" class="form-label">YEAR</label>
<input type="number" class="input-year" id="year" />
<small class="error-year"></small>
</div>
</form>
<button class="submit-btn">
<img
src="/assets/images/icon-arrow.svg"
alt="white downward-pointing arrow"
/>
</button>
<div class="results">
<p><span class="output-year">--</span>years</p>
<p><span class="output-month">--</span>months</p>
<p><span class="output-day">--</span>days</p>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>