forked from likelion-inha-13/FE-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
28 lines (28 loc) · 751 Bytes
/
2.html
File metadata and controls
28 lines (28 loc) · 751 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2 과제</title>
</head>
<body>
<h1>회원가입</h1>
<form>
ID: <input><br>
Password: <input><br>
이름: <input><br>
생년월일: <input type="date"><br>
성별: <select>
<option>남성</option>
<option>여성</option>
</select><br>
이메일: <input placeholder="이메일 앞자리">@
<select>
<option>gmail.com</option>
<option>naver.com</option>
<option>daum.net</option>
</select><br>
<button>가입하기</button>
</form>
</body>
</html>