<HTML>
<HEAD>
<TITLE>
HTML Tables Demo #3
</TITLE>
<BODY>
<H1>Table Row/Column Spanning and Width Control</H1>
<HR><P>

<TABLE BORDER>
<CAPTION>Demo Table With Row and Column Spanning</CAPTION>
<TR><TH>Col. 1 Heading</TH><TH>Col. 2 Heading</TH><TH>Col. 3 Heading</TH></TR>
<TR><TD COLSPAN="2">Col. 1 Row 2, spanning 2 columns.</TD>
    <TD>Col. 3 Row 2</TD></TR>
<TR><TD>Col. 1 Row 3</TD>
    <TD>Col. 2 Row 3</TD>
    <TD ROWSPAN="2">Col. 3 Row 3, spanning 2 rows.</TD></TR>
<TR><TD>Col. 1 Row 4</TD>
    <TD>Col. 2 Row 4</TD></TR>
</TABLE>

<P><HR><P>

<TABLE BORDER WIDTH="100">
<CAPTION>Demo Table With Width = 100 Pixels</CAPTION>
<TR><TH>Col. 1 Heading</TH><TH>Col. 2 Heading</TH></TR>
<TR><TD>Col. 1 Row 2 Text</TD><TD>Col. 2 Row 2 Text</TD></TR>
</TABLE>

<P><HR><P>

<TABLE BORDER WIDTH="100%">
<CAPTION>Demo Table With Width = 100%</CAPTION>
<TR><TH>Col. 1 Heading</TH><TH>Col. 2 Heading</TH></TR>
<TR><TD>Col. 1 Row 2 Text</TD><TD>Col. 2 Row 2 Text</TD></TR>
</TABLE>

<P><HR>
<ADDRESS>
Created 08-01-95 / Last Modified 08-01-95 <BR>
Cedars-Sinai Medical Center / <A HREF="mailto:duncan@csmc.edu">duncan@csmc.edu</A>
</ADDRESS>
</BODY>
</HTML>
