일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- C
- Kafka
- algorithm
- CLASS
- 포인터
- WebProgramming
- JavaScript
- java
- windows
- request
- beans
- query
- HTML
- array
- UTF-8
- 악성코드
- function
- Sort
- Call-by-reference
- c++
- API
- System
- OOP
- 투자
- meta
- jsp
- 자료구조
- CSS
- 윈도우즈
- 노드
Archives
- Today
- Total
hahahia
HTML소스(가입양식 폼 만들기) 본문
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> INPUT form 예제 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<FORM action="#" method="post">
<TABLE border= "1">
<TR>
<TH> ID </TH>
<TD> <INPUT type="text" name="id"></TD>
</TR>
<TR>
<TH> 성명 </TH>
<TD> <INPUT type="text" name="name"></TD>
</TR>
<TR>
<TH> 전자우편 </TH>
<TD> <input type="text" name="email"></TD>
</TR>
<TR>
<TH> 암호 </TH>
<TD> <input type="password" name="pwd" size="10" maxlength="10" ></TD>
</TR>
<TR>
<TH> 성별 </TH>
<TD> <input type="radio" name="gender" value="male"> 남 <input type="radio" name="gender" value="female"> 여</TD>
</TR>
<TR>
<TH> 직업 </TH>
<TD> <select name="job">
<option value="컴퓨터기사"> 컴퓨터기사 </option>
<option value="요리사"> 요리사 </option>
<option value="프로게이머"> 프로게이머 </option>
<option value="학생"> 학생 </option>
</TD>
</TR>
<TR>
<TH colspan="2"> <input type="submit" value="가입완료"> <input type="reset" value="취소"> </TH>
</TR>
</TABLE>
</FORM>
</body>
</html>
'Web Programming > HTML & CSS' 카테고리의 다른 글
CSS를 이용한 간단한 예제(선택자) (0) | 2012.04.04 |
---|---|
CSS 기초 01 (0) | 2012.03.28 |
HTML(HyperText Markup Language) part 01 (0) | 2012.03.07 |
Comments