table
<table> 要素は表(テーブル)を作成します。表の行を構成する <tr>、表の見出しセルを示す <th>、表のデータセルを示す<td> 等と組み合わせて使用します。
属性
グローバル属性のみ
サンプル
単純な表を作ると次のようになります。
<table>
<tr>
<th>Apple</th>
<td>iPhone</td>
</tr>
<tr>
<th>Microsoft</th>
<td>Surface Duo</td>
</tr>
</table>