Showing
1 changed file
with
60 additions
and
0 deletions
practice_4/index.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html lang="en"> | ||
3 | +<head> | ||
4 | + <meta charset="UTF-8"> | ||
5 | + <title>회원가입</title> | ||
6 | +</head> | ||
7 | +<body> | ||
8 | + <form action="" method="post"> | ||
9 | + <table border="1"> | ||
10 | + <tr> | ||
11 | + <td><b>아이디</b></td> | ||
12 | + <td colspan="3"> | ||
13 | + <input type="text"> | ||
14 | + <button>중복조회</button> | ||
15 | + </td> | ||
16 | + </tr> | ||
17 | + <tr> | ||
18 | + <td><b>비밀번호</b></td> | ||
19 | + <td> | ||
20 | + <input type="password"> | ||
21 | + </td> | ||
22 | + <td><b>확인</b></td> | ||
23 | + <td> | ||
24 | + <input type="password"> | ||
25 | + </td> | ||
26 | + </tr> | ||
27 | + <tr> | ||
28 | + <td><b>이름</b></td> | ||
29 | + <td colspan="3"> | ||
30 | + <input type="text"> | ||
31 | + </td> | ||
32 | + </tr> | ||
33 | + <tr> | ||
34 | + <td><b>성별</b></td> | ||
35 | + <td colspan="3"> | ||
36 | + <input name="sex" value="male" type="radio"/>남 | ||
37 | + <input name="sex" value="female" type="radio"/>여 | ||
38 | + </td> | ||
39 | + </tr> | ||
40 | + <tr> | ||
41 | + <td><b>지역</b></td> | ||
42 | + <td colspan="3"> | ||
43 | + <select> | ||
44 | + <option>서울</option> | ||
45 | + <option>수원</option> | ||
46 | + <option>창원</option> | ||
47 | + <option>부산</option> | ||
48 | + </select> | ||
49 | + </td> | ||
50 | + </tr> | ||
51 | + <tr> | ||
52 | + <td colspan="4"> | ||
53 | + <input type="checkbox"/> 약관에 동의합니다 | ||
54 | + </td> | ||
55 | + </tr> | ||
56 | + </table> | ||
57 | + <input type="submit" value="회원가입"/> | ||
58 | + </form> | ||
59 | +</body> | ||
60 | +</html> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment