-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaculators.html
More file actions
48 lines (43 loc) · 1.46 KB
/
caculators.html
File metadata and controls
48 lines (43 loc) · 1.46 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>만 나이 계산기</title>
</head>
<body>
<div class="mx-auto max-w-screen-xl px-4 py-16 sm:px-6 lg:px-8">
<div class="mx-auto max-w-lg">
<h1 class="text-center text-2xl font-bold text-indigo-600 sm:text-3xl">
만 나이 계산기
</h1>
<p class="mx-auto mt-4 max-w-md text-center text-gray-500">
만 나이 계산을 간편하게 :)
</p>
<div>
<label for="birthday" class="text-sm font-medium">생년월일</label>
<div class="relative mt-1">
<input
type="date"
id="birthday"
class="w-full rounded-lg border-gray-200 p-4 pr-12 text-sm shadow-sm"
/>
</div>
</div>
<div>
<label for="age" class="text-sm font-medium">만 나이</label>
<div class="relative mt-1" id="result"></div>
</div>
<button
id="submit"
class="block w-full rounded-lg bg-indigo-600 px-5 py-3 text-sm font-medium text-white"
>
제출하기
</button>
</div>
</div>
<script src="JS/agecalculators.js"></script>
</body>
</html>