
顯示效果。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>表格標簽的使用</title>
</head>
<body>
<!--table:表格標簽-->
<h2>
<table border="1" cellspacing="0" bgcolor="aqua" align="center">
<!--caption:標題標簽-->
<caption>我喜歡的歌曲</caption>
<!--tr:一行-->
<tr>
<!--th:表頭的單元格-->
<th>歌名</th>
<th>歌手</th>
</tr>
<tr>
<td>光輝歲月</td>
<td>Beyong</td>
<tr>
<td>紅豆</td>
<td>王菲</td>
</tr>
<td>十年</td>
<td rowspan="2">陳奕迅</td>
<tr>
<td>好久不見</td>
</tr>
<tr>
<td>甜蜜蜜</td>
<td>鄧麗君</td>
</tr>
<tr>
<td colspan="2">現共計:五首歌曲</td>
</tr>
</table>
</h2>
</body>
</html>
