<HTML>
<HEAD>
<TITLE>
HTML Tables Demo #2
</TITLE>
<BODY>
<H1>Table Text Flow and Character Attributes</H1>
<HR><P>

<TABLE BORDER>
<CAPTION>Table Demonstrating Text Flow
and Character Formatting Tags</CAPTION>
<TR><TH>Col. 1 Heading</TH><TH>Col. 2 Heading</TH></TR>
<TR><TD><H1>A Level 1 Heading</H1></TD>
    <TD>Here are 2 lines of text in a cell<HR>
        separated by a Horizontal Rule tag.</TD></TR>
<TR><TD>Here are two paragraphs in a single cell.
        <P>This is the 2nd paragraph.</TD>
    <TD>Here are 2 lines of text in a cell,<BR>
        separated by a Line-Break tag.</TD></TR>
<TR><TD><B>Here is some text with the Bold tag.</B></TD>
    <TD><I>Here is some text with the Italic tag.</I></TD></TR>
<TR><TD><TT>Here is some text with the TTY tag.</TT></TD>
    <TD><CODE>Here is some text with the Code tag.</CODE></TD></TR>
</TABLE>

<P><HR><P>

<TABLE BORDER>
<CAPTION>Table Demonstrating Alignment Tags</CAPTION>
<TR><TH>Col. 1 Heading</TH><TH>Col. 2 Heading</TH></TR>
<TR><TD ALIGN="center" VALIGN="middle">Centered middle-aligned text.</TD>
    <TD>Here is a bunch of text in a cell with default alignment. 
        Here is a bunch of text in a cell.</TD></TR>
<TR><TD ALIGN="left">Left-aligned text.</TD>
    <TD ALIGN="right">Right-aligned text.</TD></TR>
<TR><TD>Here is a bunch of text in a cell with default alignment. 
        Here is a bunch of text in a cell.</TD>
    <TD ALIGN="center" VALIGN="top">Centered top-aligned text.</TD></TR>
<TR><TD>Here is a bunch of text in a cell with default alignment. 
        Here is a bunch of text in a cell.</TD>
    <TD ALIGN="center" VALIGN="bottom">Centered bottom-aligned 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>

