1  <HTML>
  2  <HEAD>
  3    <TITLE>HTML Example:  Lists</TITLE>
  4  </HEAD>
  5  <BODY BGCOLOR="#FFFFFF">
  6  
  7  <H1 ALIGN="CENTER">Lists</H1>
  8  
  9  <H2>An ordered list:</H2>
 10  
 11  <OL>
 12    <LI>An item
 13    <LI>Another item
 14    <LI>Yet another item
 15  </OL>
 16  
 17  <H2>An unordered list:</H2>
 18  
 19  <UL>
 20    <LI>An item
 21    <LI>Another item
 22    <LI>Yet another item
 23  </UL>
 24  
 25  <H2>Nested lists:</H2>
 26  
 27  <UL>
 28    <LI>An item
 29    <UL>
 30      <LI>A subitem
 31      <LI>Another subitem
 32      <LI>Yet another subitem
 33    </UL>
 34    <LI>Another item
 35    <UL>
 36      <LI>A subitem
 37      <LI>Another subitem
 38      <LI>Yet another subitem
 39    </UL>
 40    <LI>Yet another item
 41    <UL>
 42      <LI>A subitem
 43      <LI>Another subitem
 44      <LI>Yet another subitem
 45    </UL>
 46  </UL>
 47  
 48  <P><HR>
 49  
 50  </BODY>
 51  </HTML>