본문 바로가기
프로그램 개발(분석, 설계, 코딩, 배포)/2.1.1 web_html

web_html_ 회원가입 예제

by 3604 2023. 1. 1.
728x90

 

<html>
<head>
<meta charset="utf-8">
<title>basic6</title>
</head>

<body>
<section id="login">
<div class="title">
          <h3>회원 가입</h3>
</div>
        <div class="content">
<form>
<table width="500" border="1" cellspacing="0" cellpadding="5">
  <tbody>
<tr>
  <th scope="row">아이디</th>
  <td><input type="text"></td>
</tr>
<tr>
  <th scope="row">비밀번호</th>
  <td><input type="password"></td>
</tr>
<tr>
  <th scope="row">직업</th>
  <td>
  <label><input type="radio" name="job">학생</label>
  <label><input type="radio" name="job">대학생/대학원생</label>
  <label><input type="radio" name="job">회사원</label>
  <label><input type="radio" name="job">강사</label>
  <label><input type="radio" name="job">기타</label>
  </td>
</tr>
<tr>
  <th scope="row">직업2</th>
  <td>
  <select>
  <option>직업</option>
  <option>학생</option>
  <option>대학생/대학원생</option>
  <option>회사원</option>
  <option>주부</option>
  <option>감사</option>
  <option>기</option>
  </select>
  </td>
</tr>
<tr>
  <th scope="row">취미</th>
  <td>
  <label><input type="checkbox">독서</label>
  <label><input type="checkbox">낚</label>
  <label><input type="checkbox">운동</label>
  <label><input type="checkbox">기타</label>
  </td>
</tr>
<tr>
  <td  colspan="2">
  <input type="reset" value="cancel">
  <input type="submit" value="ok">
  </td>
</tr>
  </tbody>
</table>

</form>
</div>
    </section>
</body>
</html>

728x90
반응형

'프로그램 개발(분석, 설계, 코딩, 배포) > 2.1.1 web_html' 카테고리의 다른 글

html iframe object embed 차이  (0) 2023.11.20
HTML 문서 꾸미기  (0) 2023.09.24
WEB_HTML_테이블  (0) 2023.01.01
web_html_폼 form 예제  (0) 2022.12.31
html 기본 구조  (0) 2022.12.31