Tables in HTML
The basic 2x2 table in html has the following scheme:
<table>
<tr>
<td> Row 1, Cell 1</td>
<td> Row 1, Cell 2</td>
</tr>
<tr>
<td> Row 2, Cell 1</td>
<td> Row 2, Cell 2</td>
</tr>
</table>
Row 1, Cell 1 Row 1, Cell 2
Row 2, Cell 1 Row 2, Cell 2
Row 1 specification
Row 2 specification
Previous slide
Next slide
Back to first slide
View graphic version