prac3.html 399 Bytes
<html>
<head>
</head>
<body>
<table border="1">
<caption>홈런순위</caption>
<thead>
  <tr>
  <th>이름</th>
  <th>홈런</th>
  <tr>
</thead>
<tbody>
  <tr>
  <td>이대호</td>
  <td>41</td>
  </tr>
  <tr>
  <td>최진행</td>
  <td>27</td>
  </tr>
  <tr>
  <td>홍성흔</td>
  <td>26</td>
  </tr>
</tbody>
<tfoot>
  <tr>
  <th colspan="2">2010-08-22</th>
  </tr>
</tfoot>
</table>
</body>