07<table>要素は、テーブル(表)を表示する要素です。


※サンプルコード

<table border="1"> <tr> <th>見出し</th> <th>見出し</th> </tr> <tr> <td>データ</td> <td>データ</td> </tr> </table>

border="1"

見出し 見出し
データ データ

border="5"

見出し 見出し
データ データ

border="10"

見出し 見出し
データ データ