View Single Post
  #5  
Old December 31, 2008, 03:10 PM
Cornell
 
Posts: n/a
Default table code

Glenn:

Ignore the PM I sent you....table codes below.

Cornell

One solid table - no rows or columns

<table align="center" width="650" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><font face="arial" size="2" color="#000000">

One solid table

</font></td>
</tr>
</table>

.................................................. ....

Table with 2 columns

<table align="center" width="650" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="325" valign="top"><font face="arial" size="2" color="#000000">

Left column

</font></td>
<td width="325" valign="top"><font face="arial" size="2" color="#000000">

Right column

</font></td>
</tr>
</table>

.................................................. ..

Table with 2 rows and no columns

<table align="center" width="650" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="650" valign="top"><font face="arial" size="2" color="#000000">

Top row

</font></td>
</tr>
<tr>
<td width="650" valign="top"><font face="arial" size="2" color="#000000">

Bottom row

</font></td>
</tr>
</table>

................................................

Table with top row spanning 2 lower columns

<table align="center" width="650" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" width="650" valign="top"><font face="arial" size="2" color="#000000">

Top row spanning full table width

</font></td>
</tr>
<tr>
<td width="325" valign="top"><font face="arial" size="2" color="#000000">

Lower left hand column

</font></td>
<td width="325" valign="top"><font face="arial" size="2" color="#000000">

Lower right hand column

</font></td>
</tr>
</table>

.................................................. ..

Table with left and right column at top and row below columns spanning across both columns and full width of table

<table align="center" width="650" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="325" valign="top"><font face="arial" size="2" color="#000000">

Top left column

</font></td>
<td width="325" valign="top"><font face="arial" size="2" color="#000000">

Top right column

</font></td>
</tr>
<tr>
<td colspan="2" width="650" valign="top"><font face="arial" size="2" color="#000000">

Bottom row spanning 2 top columns

</font></td>
</tr>
</table>
Reply With Quote