일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 빅데이터분석기사
- 원씽 독후감
- 자바 채팅
- 노트패드 줄바꿈
- ajax 동기식
- The OneThing
- Notepad++ 줄바꿈
- 빅분기 필기
- async
- 원씽 내용
- 자바스크립트 undefined
- 빅데이터분석기사 독학
- 빅분기
- TCP 채팅
- 노트패드++ 줄바꿈
- 빅분기 독학
- async false
- 간단한 채팅 프로그램
- 동기식 비동기식
- TCP Socket
- 빅데이터분석기사 필기
- ajax 비동기식
- xml 파싱 방법
- dom sax 장단점
- 원씽 책
- dom sax 차이점
- 원씽 후기
- Notepad 줄바꿈
- 자바 채팅 프로그램
- 책 원씽
- Today
- Total
SooBlending
[HTML] 간단한 회원가입 Form 본문
<회원가입 FORM>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>회원가입</title>
</head>
<!-- join_form.html -->
<body>
<center>
<h3>회원가입</h3>
<table cellpadding="5" cellspacing="0"
bgcolor="eeeeee">
<tr>
<td>ID:</td>
<td><input type="text">
<input type="button" value="중복확인">
</td>
</tr>
<tr>
<td>비 번:</td>
<td><input type="password"> </td>
</tr>
<tr>
<td>비번확인:</td>
<td><input type="password"> </td>
</tr>
<tr>
<td>이 름:</td>
<td><input type="text"> </td>
</tr>
<tr>
<td>주민번호:</td>
<td><input type="text" size="6"
maxlength="6">
-
<input type="password" size="7"
maxlength="7">
</td>
</tr>
<tr>
<td>전화번호:</td>
<td><input type="text" size="4"> -
<input type="text" size="4"> -
<input type="text" size="4">
</td>
</tr>
<tr>
<td>주 소:</td>
<td><input type="text"> </td>
</tr>
<tr>
<td>직업: </td>
<td><select>
<option>==선택==</option>
<option>학생</option>
<option>공무원</option>
<option>언론/출판</option>
<option>군인/경찰</option>
<option>일반사무직</option>
<option>영업직</option>
<option>기술/전문직</option>
<option>보건/의료</option>
<option>자영업</option>
<option>주부</option>
<option>기타</option>
</select>
</td>
</tr>
<tr align="center">
<td colspan="2">
<input type="submit" value="등록">
<input type="reset" value="취소">
</td>
</tr>
</table>
</center>
</body>
</html>
'Programming > HTML' 카테고리의 다른 글
[HTML] 기본용어 (0) | 2017.11.22 |
---|