-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 2.06 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
<!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 -->
<title>Date</title>
<link rel="stylesheet" href="./src/styles.scss" />
<script type="module" src="./src/app.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<div class="container">
<div class="haut">
<form class="form" id="formulaire">
<div class="form__input">
<div class="form__input__day">
<label for="day">Day</label>
<input type="number" id="day" name="day" placeholder="DD" required>
</div>
<div class="form__input__month">
<label for="month">Month</label>
<input type="number" id="month" name="month" placeholder="MM" required>
</div>
<div class="form__input__year">
<label for="year">Year</label>
<input type="number" id="year" name="year" placeholder="YYYY" required>
</div>
</div>
<div class="form__trait"></div>
<div class="form__btn">
<button type="submit" value="" class="material-symbols-outlined">done</button>
</div>
</form>
</div>
<div class="date">
<div class="date__year">
<p class="date__year__value" id="valueYear">--</p>
<p>  years</p>
</div>
<div class="date__month">
<p class="date__month__value" id="valueMonth">--</p>
<p>  months</p>
</div>
<div class="date__day">
<p class="date__day__value" id="valueDay">--</p>
<p>  days</p>
</div>
</div>
</div>
</body>
</html>