Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <ol> start Attribute

❮ HTML <ol> tag

Example

An ordered list starting at "50":

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

Definition and Usage

The start attribute specifies the start value of the first list item in an ordered list.


Browser Support

Attribute
start Yes Yes Yes Yes Yes

Syntax

<ol start="number">

Attribute Values

Value Description
number Specifies the start value of the first list item in the ordered list

❮ HTML <ol> tag