- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML Ordered List
An HTML ordered list (<ol>) is used to present a sequence of items in a specific order. Each item in the list is numbered automatically.
Creating an Ordered List
Ordered lists are created using the <ol> element, with each list item enclosed within <li> tags.
Basic Syntax
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output:
- First item
- Second item
- Third item
Types of Numbering
The type attribute in the <ol> tag allows you to specify different types of numbering.
1. Decimal (default)
<ol type="1">
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output:
- First item
- Second item
- Third item
2. Uppercase Letters
<ol type="A">
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output: A. First item B. Second item C. Third item
3. Lowercase Letters
<ol type="a">
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output: a. First item b. Second item c. Third item
4. Uppercase Roman Numerals
<ol type="I">
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output: I. First item II. Second item III. Third item
5. Lowercase Roman Numerals
<ol type="i">
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output: i. First item ii. Second item iii. Third item
Starting Point
The start attribute allows you to specify the starting number of the list.
<ol start="5">
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output: 5. First item
- Second item
- Third item
Reversed Order
The reversed attribute reverses the numbering of the list items.
<ol reversed>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
Output: 3. First item
- Second item
- Third item
Nesting Ordered Lists
You can nest ordered lists within other lists to create hierarchical structures.
<ol>
<li>Chapter 1
<ol>
<li>Section 1.1</li>
<li>Section 1.2</li>
</ol>
</li>
<li>Chapter 2
<ol>
<li>Section 2.1</li>
<li>Section 2.2</li>
</ol>
</li>
</ol>
Output:
- Chapter 1
- Section 1.1
- Section 1.2
- Chapter 2
- Section 2.1
- Section 2.2
Summary
HTML ordered lists (<ol>) are used to present items in a specific sequence. They can be customized using attributes like type, start, and reversed. Ordered lists can also be nested to create complex, hierarchical structures. Understanding how to use these lists effectively is essential for creating well-structured and readable web content.