Home Affiliates Games, Pics, and More HTML Help Contact Me
Tables are very useful on web pages. If you have a
business page it can be useful when showing data or
things like that. But you can also use tables as organizers and layouts.


To start a table once again you need a special HTML tag. To start your table type this:

<TABLE> </TABLE> That starts and stops your table.

To make columns you type:

<TD> and to make rows you type: <TR>
If you type the following it will look like this:

<table> <td>Hello Bob <td>Bye Bob <tr> <td>Hello Fred <td>Bye Fred </table>
Hello Bob Bye Bob
Hello Fred Bye Fred


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:

<table border=# bgcolor="#hex code">


If you type the following it will look like the table on the right:

<table bgcolor="#2D9C1F" border=5> <td>Hello Bob <td>Bye Bob <tr> <td>Hello Fred <td>Bye Fred </table>

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:

<table border=5> <td bgcolor="FF0000">Hello Bob <td bgcolor="00FF00">Bye Bob <tr> <td bgcolor="FFFF00">Hello Fred <td bgcolor="0000FF">Bye Fred </table>

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:

<table bgcolor="#2D9C1F" border=5> <td>Hello Bob <td rowspan=2>Bye Bob <tr> <td>Hello Fred </table>

Hello Bob Bye Bob
Hello Fred