table(HTML)
table:table
table 表格容器
thead 表格標頭
tbody 表格內文
tr 表格行 table row
th 標頭 table head
td 內文 table data
code:html
<table>
<thead>
<tr>
<th>Table Row 1 Table Head</th>
<th>Table Head 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table Row 2 Table Data</td>
<td>Table Data 2</td>
</tr>
</tbody>
</table>