LeReve 2013. 5. 21. 20:00

<TABLE> ★

 

 <table border="1" width="300" cellpadding="5" cellspacing="10" bgcolor="yellow"> <!-- width="100%": 브라우저 크기에 따라 -->
<tr>
<th>번호</th><th>이름</th><th>나이</th><th>직업</th>
</tr>
<tr bgcolor="pink">
<td align="left">1</td><td>홍길동</td><td align="center">13</td><td rowspan="3">학생</td>
</tr>
<tr>
<td>2</td><td bgcolor="green">세종대왕</td><td>21</td>
</tr>
<tr>
<td>3</td><td>박근혜</td><td>22</td>
</tr>
<tr>
<td colspan="3" align="right">총인원:</td><td>3명</td>
</tr>
</table>

 


   

<FORM> ★★
<form action="" name="">
    action: 전송할 url
    name: 서로다른 폼을 구별하기 위한 식별자
    --->join.html, welcome.html

 

<h3>입력폼</h3>
<form>
<input type="">
</form>

 

 

<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>