Table with bgcolor="FF0000"
Table Caption - Using bgcolor to color entire table
| Week: |
Topic |
Text/Assig. |
| 6/29 7/1 |
Background of WWW |
ch. 25-28 |
| 7/6-7/8 |
Performance issues |
(Note the last row contains
only 2 columns, using Netscape, the empty column
space is not displayed in the background color.)
Produced by HTML Code:
<table
BORDER="5" CELLPADDING="5" BGCOLOR="FF0000">
<caption>
Table Caption - Using bgcolor to color entire table
</caption>
<tr>
<th> Week: </th>
<th> Topic </td>
<th> Text/Assig. </th>
</tr><tr>
<td>6/29 – 7/1</td>
<td>Background of WWW</td>
<td>Ch. 25-28</td>
</tr>
<tr>
<td>7/6-7/8</td>
<td>Performance issues</td>
</tr>
</table> |
|