tableタグ
表を作るためのタグ
code:table.html
<table>
<caption>
Front-end web developer course 2021
</caption>
<thead>
<tr>
<th scope="col">Person</th>
<th scope="col">Most interest in</th>
<th scope="col">Age</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Chris</th>
<td>HTML tables</td>
<td>22</td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="2">Average age</th>
<td>33</td>
</tr>
</tfoot>
</table>
thead: 表の上部のタイトル部分
tbody: 表のデータ部分
tr: 表の行を追加するときのタグ
th: 見出しの内容を入れるタグ
scope: 見出しが行の見出しか列の見出しかを示す属性
col: 列
row: 行
td: データを入れるタグ