Tables

To make a table you would use the tags below:

<table border=?>

<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>

<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>

</table>

And the end result would look something like this:

As you can see, the first table row encloses cells 1 and 2; the second table row encloses cells 3 and 4. Table rows always run horizontally. The words that you  type between <td> </td> in the borders.

In order to see the table, we added border to the table tag. This simply turns the border on. You can also specify its width by adding a number, as in <table border=5>. A lot of people will get rid of the border by typing in border=0.

Back to Layout

Next:
Paragraphs and Lists

Previous: Background