HTM22


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Ordered lists itemize information whose order is important. Browsers use one of three styles to display list items: Arabic numbers (1, 2, �), Latin letters (A, a, B, b, �), or Roman numerals (I, i, ii, �). The <OL> tag creates ordered lists., The tag must close to define the end of the list.


..Back to the top..



OUTPUT:


HTM22. Ordered Lists

Web page with three ordered lists

This ordered list uses Arabic (default) numbers
  1. First list item
  2. Second list item
  3. Third list item
  4. Fourth list item
This ordered list uses uppercase Alphabet letters
  1. List item using uppercase alphabet letter
  2. List item using uppercase alphabet letter
  3. List item using uppercase alphabet letter
  4. List item using uppercase alphabet letter
This ordered list uses lowercase Roman numerals
  1. List item using lowercase Roman numerals
  2. List item using lowercase Roman numerals
  3. List item using lowercase Roman numerals
  4. List item using lowercase Roman numerals


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM22. Ordered Lists</TITLE></HEAD>
<BODY>
<H1>Web page with three ordered lists</H1>
<!-- List uses default list number-->
This ordered list uses Arabic (default) numbers
<OL>
<LI>First list item
<LI>Second list item
<LI>Third list item
<LI>Fourth list item
</OL>
<!-- List uses uppercase alphabet letters-->
This ordered list uses uppercase Alphabet letters
<OL TYPE = A>
<LI> List item using uppercase alphabet letter
<LI> List item using uppercase alphabet letter
<LI> List item using uppercase alphabet letter
<LI> List item using uppercase alphabet letter
</OL>
<!-- List uses lowercase Roman numerals-->
This ordered list uses lowercase Roman numerals
<OL TYPE = i >
<LI> List item using lowercase Roman numerals
<LI> List item using lowercase Roman numerals
<LI> List item using lowercase Roman numerals
<LI> List item using lowercase Roman numerals
</OL>
</BODY>
</HTML>


..Back to the top..