To make a table you this code <table><tr><td><font>Words or Images </font></td></tr></table>

This is how you can make Table with a border [border="1px"]  
Word
see the words and the image is in a BOX (table) You can change the style of the border go to CSS


This is how you can make a Table with a background and add a color to da border [bgcolor="990000" border="1px" bordercolor="FFFFFF"] make sure font is not da same color as the background
Word
if you do not want a background and like it invisble just dont but da background part of the code [background:#990000]


Lets combine all dat we leaned
Word and here is an image
Da Rican Boi
see there is font, links, and images in da Table you can add whatever ever you want in them.
Also, see the table is bigger the table will automatically adjust its size to fit its contents


Lets change da size of the table [height="150px" width="300px"]
Word and here is an image
Da Rican Boi
Make the Table smaller or bigger




[---- More Then One Tables ----]

1st thing to know is:
      <table>    [ Defines a table ]
      <tr>     [ Defines a table row ]
      <td>     [ Defines a table cell ]


Basic Table as you know is:
<table border="1"><tr><td>--TABLE--</tr></td></table>
--TABLE--


To add two cells add a <td> and close it with a </td>
<table border="1"><tr>
<td>--TABLE 1--</td>
<td>--TABLE 2--</td>
</tr></table>
--TABLE 1----TABLE 2--


To add four cells just keep adding <td> and close it with a </td>
<table border="1"><tr>
<td>--TABLE 1--</td>
<td>--TABLE 2--</td>
<td>--TABLE 3--</td>
<td>--TABLE 4--</td>
</tr></table>
--TABLE 1----TABLE 2----TABLE 3----TABLE 4--


To add another row to two cells add <tr> and close it with a </tr>
<table border="1">
<tr><td>--TABLE 1--</td></tr>
<tr><td>--TABLE 2--</td></tr>
</table>
--TABLE 1--
--TABLE 2--


To add four rows to the four cells just keep addin more <tr> and close it with a </tr>
<table border="1">
<tr><td>--TABLE 1--</td></tr>
<tr><td>--TABLE 2--</td></tr>
<tr><td>--TABLE 3--</td></tr>
<tr><td>--TABLE 4--</td></tr>
</table>
--TABLE 1--
--TABLE 2--
--TABLE 3--
--TABLE 4--


Four Cells with two Rows:
<table border="1">
<tr><td>--TABLE 1--</td><td>--TABLE 2--</td></tr>
<tr><td>--TABLE 3--</td><td>--TABLE 4--</td></tr>
</table>
--TABLE 1----TABLE 2--
--TABLE 3----TABLE 4--



Now Add CSS to the tables:
-Table 1-

- Table 2-


-Table 3-


     --TABLE 1--     

          --TABLE 2--          


--TABLE 1--

--TABLE 2--



--TABLE 3--

--TABLE 4--