practice4.html 1.45 KB
<!DOCTYPE html>
<html lang="ko">
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    <form action="" method="post">
    <table border="1">
      <thead>
      </thead>
      <tbody>
        <tr>
          <th >아이디</th>
          <td><input type = "text" name = "name" size = "10"/><input type = "button" value = "중복조회"/></td>
        </tr>
        <tr>
          <th>비밀번호</th>
          <td><input type="password" name="pwd"/></td> <th>확인</th><td> <input type="text" name="ch"/></td>
        </tr>
        <tr>
          <th>이름</th>
          <td colspan="3"><input type="text" name="n"></td>
        </tr>
        <tr>
          <th>이메일</th>
          <td colspan="3"><input type="text" name="m"></td>
        </tr>
        <tr>
          <th>성별</th>
          <td colspan="3"><input type="radio" name="sex"><input type="radio" name="sex"></td>
        </tr>
        <tr>
          <th>지역</th>
          <td colspan="4"><select name = "job">
            <option value="seoul">서울</option>
            <option value="seoul">부산</option>
            <option value="seoul">기타</option>
          </select></td>
        </tr>
        <tr>
          <td colspan="4"><input type="checkbox" name="hobby" value="약관에 동의합니다."/>약관에 동의합니다.</td>
        </tr>
      </tbody>
      </table>
      <input type="submit" value="회원가입"/>
</form>

  </body>
</html>