본문 바로가기

컴퓨터/jsp

HTML 폼태그

<html>
<head><title></title></head>
<body>
<form action="가야할곳"method="how">
ID:<input type="text"><br>
pwd:<input type="password"><br>
남<input type="radio"checked>여<input type="radio"><br>
취미<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox">
직업
<select>
<option>학생</option>
<option>의사</option>
<option>도둑</option>
<option>교수</option>
<option>프로게이머</option>
</select><br>
남길말
<textarea rows="20" cols="50"></textarea>
<br>
첨부<input type="file"><br>
<input type="submit" value="전송">
<input type="reset" value="취소">

 

</from>
</body>
</html>

'컴퓨터 > jsp' 카테고리의 다른 글

버퍼  (0) 2013.07.06
Encoding  (0) 2013.07.06
개인정보 저장  (0) 2013.07.06
servlet  (0) 2013.07.06
HTML 두 숫자 입력  (0) 2013.07.06