Page 1 of 1

HTML Ordered Lists

Posted: Fri Oct 27, 2023 8:05 am
by Guest
HTML Ordered Lists


The HTML <ol> tag defines an ordered list. An
ordered list can be numerical or alphabetical.

Ordered HTML List
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items will be marked with numbers by default:

Example

<ol>
 
<li>Coffee</li>  <li>Tea</li>
 
<li>Milk</li>
</ol>

Try it Yourself »


Ordered HTML List - The Type Attribute
The type attribute of the <ol> tag, defines the type of the
list item marker:


Type
Description


type="1"
The list items will be numbered with numbers (default)


type="A"
The list items will be numbered with uppercase letters


type="a"
The list items will be numbered with lowercase letters


type="I"
The list items will be numbered with uppercase roman numbers


type="i"
The list items will be numbered with lowercase roman numbers



Numbers:

<ol type="1">  <li>Coffee</li>
  <li>Tea</li>  <li>Milk</li></ol>

Try it Yourself »


Uppercase Letters:

<ol type="A">  <li>Coffee</li>
  <li>Tea</li>  <li>Milk</li></ol>

Try it Yourself »


Lowercase Letters:

<ol type="a">  <li>Coffee</li>
  <li>Tea</li>  <li>Milk</li></ol>

Try it Yourself »


Uppercase Roman Numbers:

<ol type="I">  <li>Coffee</li>
  <li>Tea</li>  <li>Milk</li></ol>

Try it Yourself »


Lowercase Roman Numbers:

<ol type="i">  <li>Coffee</li>
  <li>Tea</li>  <li>Milk</li></ol>

Try it Yourself »








Control List Counting
By default, an ordered list will start counting from 1. If you want to start counting from a specified number, you can use the start attribute:

Example

<ol start="50">  <li>Coffee</li>  <li>Tea</li> 
<li>Milk</li></ol>
Try it Yourself »


Nested HTML Lists
Lists can be nested (list inside list):

Example

<ol>  <li>Coffee</li>  <li>Tea
    <ol>     
<li>Black tea</li>      <li>Green tea</li>
    </ol> 
</li>  <li>Milk</li></ol>

Try it Yourself »


Note: A list item (<li>) can contain
a new list, and other HTML elements, like images and links, etc.


Chapter Summary

Use the HTML <ol> element to define an ordered list
Use the HTML type attribute to define the numbering type
Use the HTML <li> element to define a list item
Lists can be nested
List items can contain other HTML elements


HTML List Tags


Tag
Description


<ul>
Defines an unordered list


<ol>
Defines an ordered list


<li>
Defines a list item


<dl>
Defines a description list


<dt>
Defines a term in a description list


<dd>
Describes the term in a description list



For a complete list of all available HTML tags, visit our HTML Tag Reference.














+1

Reference: https://www.w3schools.com/html/html_lists_ordered.asp

Re: <t>HTML Ordered Lists</t>

Posted: Mon Oct 20, 2025 9:23 pm
by alexseen
One night when I couldn’t sleep, I picked up my phone and searched for some fun sites to pass the time. That’s how I found spin mama, and I’ve been visiting it often ever since. It’s got smooth gameplay, daily bonuses that refresh automatically, and a clean, comfortable look. I like that it’s not overloaded with ads or noise — just fun, straightforward entertainment. It’s perfect for those quiet moments when you just want something easygoing to do.

Re: <t>HTML Ordered Lists</t>

Posted: Wed Mar 04, 2026 5:00 pm
by jonsen
HTML to naprawdę potężne narzędzie, które pozwala na tworzenie struktury stron internetowych w sposób zrozumiały i przejrzysty. Jeśli interesują Cię zamówione listy, to warto zajrzeć na rockyspin, gdzie znajdziesz więcej informacji na ten temat. Używanie tagów <ol> i <li> jest niezwykle ważne, ponieważ dzięki nim można łatwo uporządkować treści na stronie. Nestowanie list również otwiera przed nami nowe możliwości, więc warto eksperymentować z różnymi stylami i atrybutami, aby uzyskać pożądany efekt wizualny.

Re: <t>HTML Ordered Lists</t>

Posted: Wed Mar 25, 2026 6:56 am
by krystalles
Ordered lists in HTML offer structured content presentation. Thinking of creating a complete pokerogue dex? Use <ol> to number each entry! The type attribute (1, A, a, I, i) customizes the list style. You can even start from a specific number with start. Nested lists are great for subcategories, similar to expanding a Pokerogue and Pokerogue Dex family tree. Mastering these elements enhances website navigation and readability.