<pre>
<form name="myForm" action="http://B202-t/Login.asp"
method="post">
<h3>회원가입 입력양식</h3>
아이디 : <input type="text" name="UserID" value="red" size="25" maxlength="5" readonly>
비밀번호 : <input type="password" name="Password" value="">
성별 : <input type="radio" name="gender" value="남">남자 <input type="radio" name="gender" value="여" checked>여자
취미 : <input type="checkbox" name="hobby" value="농구">농구 <input type="checkbox" name="hobby" value="축구" checked>축구
직업 :
<select name="job" size="1" multiple>
<option value="1">학생</option>
<option value="2" selected>회사원</option>
</select>
소개 : <textarea name="intro" cols="40" rows="10"></textarea>
사진 : <input type="file" name="photo">
<input type="button" value="기본버튼">
<input type="submit" value="회원가입">
<input type="reset" value="다시쓰기">
<input type="image" src="./images/logo_top.gif">
<input type="hidden" name="test" value="메롱~">
</form>
</pre>