Table with Caption at Bottom:

Week: Topic Text/Assig.
6/29 - 7/1 Background of WWW ch. 25-28
7/6-7/8 Performance issues
Table Caption - Using bgcolor to color single cell in table

Also note how the last row has only 2 columns and the resulting arrangement of the columns.
Caption tag follows table tag before first <tr> tag.  Produced by HTML Code:

<table BORDER="5" cellpadding="5">

<tr>
<th>Week:</th>
<td VALIGN="top">Topic</td>
<th> Text/Assig. </th>
</tr>


<tr>
<td>6/29 - 7/1</td>
<td VALIGN="top">Background of WWW</td>
<td>ch. 25-28</td>
</tr>


<tr>
<td>7/6-7/8</td>
<td WIDTH="66%" VALIGN="top" bgcolor="#ff00ff">Performance issues</td>
</tr>

<caption valign="bottom">Table Caption - Using bgcolor to color single cell in table</caption>


</table>

 

       

Last updated on 03/05/2007  by L.M. Hicks