-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.43 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
<!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"
/>
<title>Frontend Mentor | Age calculator app</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="input-flex">
<div class="input-container">
<span>Day</span>
<input type="number" id="day" />
<small class="error-day"></small>
</div>
<div class="input-container">
<span>Month</span>
<input type="number" id="month" />
<small class="error-month"></small>
</div>
<div class="input-container">
<span>Year</span>
<input type="number" id="year" />
<small class="error-year"></small>
</div>
</div>
<button class="submit-btn">
<img src="icon-arrow.svg" alt="" />
</button>
<div class="output">
<h1><span class="output-year">--</span>years</h1>
<h1><span class="output-month">--</span>months</h1>
<h1><span class="output-day">--</span>days</h1>
</div>
</div>
<script src="script.js"></script>
</body>
</html>