Showing
1 changed file
with
64 additions
and
0 deletions
html_ex04.html
0 → 100644
| 1 | + | ||
| 2 | +<!DOCTYPE html> | ||
| 3 | +<html lang="ko"> | ||
| 4 | +<head> | ||
| 5 | + <meta charset="utf-8"> | ||
| 6 | +</head> | ||
| 7 | +<body> | ||
| 8 | +<form> | ||
| 9 | +<table border="1"> | ||
| 10 | + | ||
| 11 | +<thead> | ||
| 12 | +<tr> | ||
| 13 | + | ||
| 14 | + <input type="hidden" name="type" value="user"/> | ||
| 15 | + <th>아이디</th> | ||
| 16 | + | ||
| 17 | + | ||
| 18 | + <td> | ||
| 19 | + <input type="text" name="name" size="10"/> | ||
| 20 | + <input type="button" value="중복조회"/> | ||
| 21 | + </td> | ||
| 22 | +</tr> | ||
| 23 | +</thead> | ||
| 24 | + | ||
| 25 | +<tbody> | ||
| 26 | +<tr> | ||
| 27 | + <th>비밀번호 </th> | ||
| 28 | + <td> <input type="password" name="pwd" size="10"/></td> | ||
| 29 | + <th> 확인 </th> | ||
| 30 | + <td> <input type="password" name="pwd" size="10"/></td> | ||
| 31 | +</tr> | ||
| 32 | +<tr> | ||
| 33 | + <th> 이메일</th> | ||
| 34 | + <td><input type="email" name="email" size="20"/> </td> | ||
| 35 | +</tr> | ||
| 36 | +<tr> | ||
| 37 | + <th>성별 </th> | ||
| 38 | +<td> | ||
| 39 | + <input type="radio" name="sex" value="m"/>남 | ||
| 40 | + <input type="radio" name="sex" value="f"/>여 | ||
| 41 | +</td> | ||
| 42 | +</tr> | ||
| 43 | + <th> 지역 </th> | ||
| 44 | + <td> <select name="address"> | ||
| 45 | + <option value="seoul">서울</option> | ||
| 46 | + <option value="busan">부산</option> | ||
| 47 | + <option value="busan">기타</option> | ||
| 48 | + </select> </td> | ||
| 49 | +</tbody> | ||
| 50 | + | ||
| 51 | +<tfoot> | ||
| 52 | +<tr> | ||
| 53 | +<td colspan="4"> | ||
| 54 | +<input type="checkbox" name="agree" value="agree"/>약관에 동의합니다. | ||
| 55 | +</td> | ||
| 56 | +</tr> | ||
| 57 | +</tfoot> | ||
| 58 | +</table> | ||
| 59 | +<input type="submit"/> | ||
| 60 | + | ||
| 61 | +</form> | ||
| 62 | + | ||
| 63 | +</body> | ||
| 64 | +</html> |
-
Please register or login to post a comment