To start a table once again you need a special HTML tag. To start your table type this:
To make columns you type:
|
|
You can add things to liven up your table
like background color, border width, and things like that.
To change both of the things I just said type the following:
| Hello Bob | Bye Bob |
| Hello Fred | Bye Fred |
| Hello Bob | Bye Bob |
| Hello Fred | Bye Fred |
You can also change the backround color of every individual cell by adding
bgcolor="#hex code"> after the td part.
It would look like this:
| Hello Bob | Bye Bob |
| Hello Fred | Bye Fred |
| Hello Bob | Bye Bob |
| Hello Fred | Bye Fred |
Another thing to learn about tables is ROWSPAN.
If oyu type the following it will look like this:
| Hello Bob | Bye Bob |
| Hello Fred |
| Hello Bob | Bye Bob |
| Hello Fred |