<HTML>
<HEAD>
<TITLE>
HTML Tables Demo #1
</TITLE>
<BODY>
<H1>Table Borders and Captions</H1>
<HR><P>

<TABLE>
<CAPTION>Demo Table With Caption<BR>But Without Border</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>
<CAPTION>Demo Table With Caption<BR>and Default Border</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 CELLSPACING=10 CELLPADDING=5 BORDER>
<CAPTION>Demo Table With Caption, 10-Pixel Border, 
and 5-Pixel Cell Padding</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>

