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
36 lines (36 loc) · 1.15 KB
/
2.html
File metadata and controls
36 lines (36 loc) · 1.15 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
<!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>
<label for="letter">ID:</label>
<input type="text" placeholder="ID"><br>
<label for="letter">비밀번호:</label>
<input type="text" placeholder="비밀번호"><br>
<label for="letter">이름:</label>
<input type="text" placeholder="이름"><br>
<label for="letter">생년월일:</label>
<input type="date"><br>
<label for="letter">성별:</label>
<select>
<option>남성</option>
<option>여성</option>
</select><br>
<label for="letter">이메일:</label>
<input type="text" placeholder="이메일 앞자리">
<label for="letter">@</label>
<select>
<option>gmail.com</option>
<option>naver.com</option>
<option>inha.edu</option>
<option>직접입력</option>
</select><br>
<button>가입하기</button>
</form>
</body>
</html>