HTML Ordered List Element (OL)
Here is an ordered list of items
- item one
- item two
- 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"
- item one
- item two
- 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"
- item one
- item two
- 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