Tables
Tables are a good way to organise the layout of a web page.
However you must be careful if you use tables, if you miss out a tag or put tags in the wrong order,
your whole web page may suddenly go blank.
While you are still learning how to use them I recommend that you test every line or so... I still do!
A simple table
| Column 1 | column 2 |
| this is a cell | this is a cell |
| this is a cell | this is a cell |
<table border=1>
<tr> <th> Column 1 </th> <th> column 2 </th> </tr>
<tr> <td> this is a cell </td> <td> this is a cell </td> </tr>
<tr> <td> this is a cell </td> <td> this is a cell </td> </tr>
</table>