#テーブル
<table border="5" bordercolor="色" bgcolor="yellow" width ="100px" height="200px" cellpadding="10">
// 枠線の太さ、色の指定 背景色 表のサイズ セルの余白
<tr>
<th>名前</th>
<th>年齢</th>
</tr>
<tr>
<td>高橋</td>
<td>23</td>
</tr>
<tr>
<td>佐藤</td>
<td>22</td>
</tr>
</table>
###セルを結合
//横方向に結合する
<td colspan="2">apple</td>
//縦方向に結合する
<td rowspan="2">りんご</td>
###文字のレイアウト
<tr align="left"> //左寄せ
<tr align="center"> //中央
<tr align="right"> //右寄せ