Would you like to make this site your homepage? It's fast and easy... 
    
     
     Yes, Please make this my home page! 
     
 
     
     
    
     
  
    
      |  | Welcome
        to Tom's Web | 
  
  If the last page was over whelming we will simplify it on
  this
page.
  If we make table codes like this  we will have a
  table with one row and one division
  
  
    
  
  <table border="5"
  cellpadding="8"
  width="50"
  bgcolor="#800000" >height="50">
  <tr>
  <td> </td>
  </tr>
  </table>
  If we add another <td> </td> between  the
  table row start <tr> and the table row end </tr> we will have a
  table like this.
      
  
  <table border="5"
  cellpadding="8"
  width="100"
  bgcolor="#800000" height="50">
  
  <tr>
  <td> </td>
  <td> </td>
  </tr>
  </table>
  If we put a third <td> </td> between we would have three so on and
  so on. 
  But if we started like this and cut and pasted  another whole table row
  including the division tags i.e.  <tr> <td></td></tr>
  we would have two division in column. 
      
  <table border="5"
cellpadding="8"
width="50"
bgcolor="#800000"  height="50">
<tr>
<td> </td>
</tr>
</table>
    
<table border="5"
cellpadding="8"
width="50"
bgcolor="#800000" height="100">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
If we started with a table.
      
<table border="5"
cellpadding="8"
width="50"
bgcolor="#800000" height="50">
<tr>
<td> </td>
</tr>
</table>
  And did this .
 
<table border="5"
cellpadding="8"
width="150"
bgcolor="#800000">
<tr>
<td><center><table border="5"
cellpadding="8"
width="50"
bgcolor="#800000"height="50"
>
<tr>
<td> </td>
</tr>
</table></center></td>
</tr>
</table>
We would have a table in a table and we could put a table in that table  so
on and so on.
If we started out like this.
      
   
<table border="5"
cellpadding="8"
width="100"
bgcolor="#800000" height="50">
<tr>
<td> </td>
<td> </td>
</tr>
</table>
And did this
      
<table border="5"
cellpadding="8"
width="2000"
bgcolor="#800000">
<tr>
<td><center><table border="5"
cellpadding="8"
width="50"
bgcolor="#800000"height="50">
<tr>
<td> </td>
</tr>
</table><center></td>
<td>Width="74" </td>
</tr>
</table>
We would have a table in a table division we could put a table with  division
in the division and so on and so on.
That is all I have on tables the rest is up to you Member that
a table can go in a table or a table division . to add division in a row you put
as many <td>what ever </td> between the <tr> </tr> as
you want.  There is no end to what you can do with tables to lay out a web
page. 
Next