Tables
Tables are an old fashioned way to designing a site. It is very useful and great to use for compatibility in all browsers.
To start a table off, you must use the <table> tag. This tag may or may not include the width and height. If you wish to use either, just add width="x" and/or height="x" inside the tag.
Whenever you wish to make a table row, use this tag: <tr> and closed with a </tr>. And when you wish to use a column use <td> closing with </td> (This includes when you wish to place text or images within the table).
Lastly, you must end the table by using </table>.
You may also place borders and use a background for the table. To place a border on the site just write border="0" or a larger number for a wider border (0 means no border). To use an image as the background of your table use:
background="image.url"
Such as: <table background="froggies.jpg">
And to use color as your background use: bgcolor="#FF0000" within the <table> tag as well.
