BLHteacher | Resources | Project
How to make a Basic Table
2 Columns and 2 Rows, a border of 1 and Padding between the Table Cells.
Row 1 Col 1 Row 1 Col 2 Row 2 Col 1 Row 2 Col 2
<TABLE>
<tr>
<td> Row 1 Col 1
<td> Row 1 Col 2
</tr>
<tr>
<td> Row 2 Col 1
<td> Row 2 Col 2
</tr>
</TABLE>