practice4.html
2.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
</head>
<body>
<form action="#" value="회원가입" method="post">
<table border="1">
<thread>
</thread>
<tbody>
<tr>
<th>아이디</th>
<td>
<input type="text" name="id" size="10"/>
</td>
<td colspan="3">
<input type="button" name="check_id" value="중복조회"/>
</td>
</tr>
<tr>
<th>비밀번호</th>
<td>
<input type="password" name="password" size="10"/>
</td>
<th>확인</th>
<td>
<input type="password" name="check_password" size="10"/>
</td>
</tr>
<tr>
<th>이름</th>
<td colspan="3">
<input type="text" name="name" size="10"/>
</td>
</tr>
<tr>
<th>이메일</th>
<td colspan="3">
<input type="text" name="e-mail" size="20"/>
</td>
</tr>
<tr>
<th>성별</th>
<td colspan="3">
<input type="radio" name="sex" value="m"/>남
<input type="radio" name="sex" value="f"/>여
</td>
</tr>
<tr>
<th>지역</th>
<td colspan="3">
<select name="location">
<option value="seoul">서울</option>
<option value="busan">부산</option>
<option value="daegu">대구</option>
<option value="daejeon">대전</option>
<option value="etc">기타</option>
</select>
</td>
</tr>
<tr>
<td colspan="4">
<input type="checkbox" name="agree"/>약관에 동의합니다.
</td>
</tr>
<tr>
<td colspan="4">
<input type="submit"/>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>