-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
49 lines (46 loc) · 1.5 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
<!DOCTYPE html>
<head>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<title>Age calculator app</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="enterday item-1">
Day<input type="text" class="day" size="2">
<span class="error-day"></span>
</div>
<div class="entermonth item-2">
Month<input type="text" class="month"size="2">
<span class="error-month"></span>
</div>
<div class="enteryear item-3">
Year<input type="text" class="year" size="4">
<span class="error-year"></span>
</div>
<div class="submit-img item-4">
<hr>
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" class="imgg">
<!-- Circle Background -->
<circle cx="40" cy="40" r="35" fill="purple" stroke="white" stroke-width="2" />
<!-- Curved Tail Arrow (Facing Downward) -->
<path d="M30 50 C40 80, 60 80, 70 50 L55 50 L55 30 L45 30 L45 50 L30 50 Z" fill="white" />
<!-- Margin Circle -->
<circle cx="40" cy="40" r="33" fill="none" stroke="white" stroke-width="2" />
</svg>
</div>
<div class="divyear item-5">
<label class="curryear">__</label> YEARS
</div>
<div class="divmonth item-6">
<label class="currmonth">__</label> MONTHS
</div>
<div class="divday item-7">
<label class="currday">__</label> DAYS
</div>
</div>
<script src="script.js" ></script>
</body>
</html>