THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <ol> start Attribute

HTML ol Tag Reference 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

Differences Between HTML 4.01 and HTML5

None.


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 Reference HTML <ol> tag