<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
</HEAD>
<BODY BGCOLOR = #FFFFFF>
<H1>A heading</H1>

<H2>A sub-heading</H2>

<H3>A sub-sub-heading</H3>

<H4>A sub-sub-sub-heading</H4>
<P>
    A para. with a definition list:
    <DL>
        <DT>Term 1</DT>
        <DD>Definition 1</DD>
        <DT>Term 2</DT>
        <DD>Definition 2</DD>
        <DT>Term 3</DT>
        <DD>Definition 3</DD>
        <DT>Term 4</DT>
        <DD>Definition 4</DD>
    </DL>
</P>
<P>
    A Regular para.
</P>
<H4>Another sub-sub-sub-heading</H4>
<H1>Another heading</H1>
<H4>Another sub-sub-sub-heading</H4>
<P>
    A para. with a list:
    <UL>
        <LI>List item 1</LI>
        <LI>List item 2</LI>
        <LI>List item 3</LI>
        <LI>List item 4</LI>
    </UL>
</P>
<H3>Another sub-sub-heading</H3>
<P>
    Blah, blah blah ...
</P>
<H2>Another sub-heading</H2>
<P>
    A para. with a <A HREF="foobar/html">link</A> and an <IMG SRC="foobar.gif">
    image
</P>

</BODY>
</HTML>