<HTML>
<HEAD>
<TITLE>HTML Nested and Definition Lists</TITLE>
</HEAD>
<BODY>
<H1>This Demonstrates Nested Lists</H1>
<HR>
<UL>
<LI>This is the 1st item.
  <UL>
  <LI>This is a nested bulleted item.
  <LI>This is another nested bulleted item.
  </UL>
<LI>This is the 2nd item.
  <OL>
  <LI>This is a nested numbered item.
  <LI>This is another nested numbered item.
  </OL>
<LI>This is the 3rd item.
</UL>
<HR>
<H1>This is a Definition List</H1>
<HR>
<DL>
<DT>This is the first term.
<DD>This is a description of the first term. The description can be 
very long. This is more description of the first term.
<DT>This is the second term.
<DD>This is a description of the second term. The description can be 
very long. This is more description of the second term.
</DL>
<HR>
<ADDRESS>
Created 3/13/95 / Last Modified 3/13/95<BR>
Cedars-Sinai Medical Center / duncan@csmc.edu
</ADDRESS>
</BODY
</HTML>

