-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.19 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
<!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 href="./index.css" rel="stylesheet"/>
</head>
<body>
<main>
<form>
<div class="form__block">
<label for="day" class="form__block__label">Day</label>
<input name="" type="text" value="DD" id="day" class="form__block__input"/>
</div>
<div class="form__block">
<label for="month" class="form__block__label">Month</label>
<input name="" type="text" value="MM" id="month" class="form__block__input"/>
</div>
<div class="form__block">
<label for="year" class="form__block__label">Year</label>
<input name="" type="text" value="YYYY" id="year" class="form__block__input"/>
</div>
</form>
<hr/>
<div class="output">
<div class="output__year">
-- years
</div>
<div class="output__month">
-- months
</div>
<div class="output__date">
-- days
</div>
</div>
</main>
</body>
</html>