hahahia

HTML소스(가입양식 폼 만들기) 본문

Web Programming/HTML & CSS

HTML소스(가입양식 폼 만들기)

hahahia 2012. 3. 14. 11:58
<!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="가입완료"> &nbsp; &nbsp; <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