HTML2
<TABLE> ★
<table border="1" width="300" cellpadding="5" cellspacing="10" bgcolor="yellow"> <!-- width="100%": 브라우저 크기에 따라 --> |
|
<FORM> ★★
<form action="" name="">
action: 전송할 url
name: 서로다른 폼을 구별하기 위한 식별자
--->join.html, welcome.html
<h3>입력폼</h3> |
|
<INPUT>
<INPUT type="">
->text, password, checkbox, radio, image, button, hidden
- radio
<input type="radio" name="gender">남자 <input type="radio" name="gender">여자 <br>
- checkbox
<input type="checkbox">요리 <input type="checkbox">야구 <input type="checkbox">축구<br>
<SELECT>
<OPTION>학생</OPTION>
<OPTION>개발자</OPTION>
<OPTION>기타</OPTION>
</SELECT>