테이블
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>08table 태그</title>
</head>
<body>
<!-- table태그의 border속성:테두리의 두께를 지어 width:테이블 폭, height:테이블의 높이-->
<table border="1" width="200" height="50">
<tr>
<td>1행1열</td><td>1행2열</td><td>1행3열</td>
</tr>
<tr>
<td>2행1열</td><td>2행2열</td><td>2행3열</td>
</tr>
</table>
<hr color="red">
<table bgcolor="red" width="90%" height="50" align="center" border="1" bordercolr="bule" cellpadding="5" cellspacing="0"><!-- cellpading:각 셀의 안 쪽여백을 지정 cellspacing:셀사이의 간격을 지정 -->
<caption>우리반 연락처</caption>
<tr height="50" valign="top"><!-- valign top, -->
<th>번호</th><th>이름</th><th>연락처</th><th>주소</th>
</tr>
<tr bgcolor="white">
<td width="50" align="center">1</td><td width="80%" background="./images/b.jpg">윤정범</td><td width="100">010-7811-8111</td><td>서울</td>
</tr>
<tr bgcolor="white" >
<td align="center">2</td><td>엄세명</td><td>010-7801-1111</td><td>충청</td>
</tr>
<tr bgcolor="white">
<td>3</td><td>오지석</td><td>010-7810-8101</td><td>경상</td>
</tr>
</table>
</body>
</html>