HTML Ordered List Element (OL)

Here is an ordered list of items

  1. item one
  2. item two
  3. item three

The source code:
<OL>
<LI>item one
<LI>item two
<LI>item three
</OL>

Here is an ordered list of items, Where TYPE attribute = "1"

  1. item one
  2. item two
  3. item three

The source code:
<OL TYPE="1">
<LI>item one
<LI>item two
<LI>item three
</OL>

Here is an ordered list of items, Where TYPE attribute = "A"

  1. item one
  2. item two
  3. item three

The source code:
<OL TYPE="A">
<LI>item one
<LI>item two
<LI>item three
</OL>



previous slide | next slide
Return to Beginning of Presentation
Return to Software Development Library