TABLES
HTML EXERCISE #2b

(The text in bold below will show in the table, the rest is code to form the table itself) - to view this table

<HTML>
<BODY>
<TABLE BORDER=1>
<CAPTION> This caption sits above the table </CAPTION>
<TR>
<TD ROWSPAN="2"> <BR> </TD>
<TH COLSPAN="3" BGCOLOR=aqua> Fruits </TH>
<TH COLSPAN = "3" BGCOLOR=olive>Veggies</TH>
</TR>

<TR BGCOLOR=yellow>
<TH> Apples</TH>
<TH> Oranges</TH>
<TH>Total Fruit </TH>
<TH> Potatoes</TH>
<TH> Carrots </TH>
<TH>Total Veggies</TH>
</TR>

<TR>
<TH>Sheila</TH>
<TD> 2</TD>
<TD> 4</TD>
<TD BGCOLOR=aqua> 6</TD>
<TD> 0</TD>
<TD> 3</TD>
<TD BGCOLOR=olive> 4</TD>
</TR>

<TR>
<TH>Jonathan</TH>
<TD> 5</TD>
<TD> 3</TD>
<TD BGCOLOR=aqua> 8</TD>
<TD> 5</TD>
<TD> 2</TD>
<TD BGCOLOR=olive> 7</TD>
</TR>

<TR>
<TH>William</TH>
<TD>8</TD>
<TD> 3</TD>
<TD BGCOLOR=aqua> 10</TD>
<TD> 9</TD>
<TD> 2</TD>
<TD BGCOLOR=olive> 11</TD>
</TR>
</TABLE>
</BODY></HTML>