forked from yuta-kawai/step1sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 738 Bytes
/
index.html
File metadata and controls
22 lines (21 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>生まれて何日</title>
<link rel="stylesheet" href="default.css">
</head>
<body>
<div id="main">
<h1>あなたの誕生日を入力してください!</h1>
<h2 style="display: none" id="result"></h2>
<form method="post" onsubmit="calculateBirthday(); return false;">
<input type="number" id="year" name="year" value=2000>年
<input type="number" id="month" name="month" value=1 min=1 max=12>月
<input type="number" id="day" name="day" value=1 min=1 max=31>日
<input type="submit" value="この日が私の誕生日です">
</form>
</div>
<script type="text/javascript" src="birthday.js"></script>
</body>
</html>