Open In App

HTML | start Attribute

Last Updated : 21 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The start attribute in HTML is used to specify the start value for numbering the individual list item. It is used with ordered list.
Supported Tag:

Syntax: 
 

<ol start = "value"> list items...</ol>

Attribute Values: It contains a numeric value which defines the start value of the first list item in a Ordered list. 

Example: 
 

html




<!DOCTYPE html>
<html>
    <head>
        <title>HTML start Attribute</title>
        <style>
            h1, h2 {
                text-align: center;
            }
        </style>
    </head>
    <body>
        <h2 style = "color: green;">
            HTML start Attribute
        </h2>
         
         
 
 
<p>Sorting Algorithms</p>
 
 
 
         
        <ol start="7">
            <li>Bubble sort</li>
            <li>Merge sort</li>
            <li>Quick sort</li>
        </ol>
    </body>
</html>


Output: 
 

start

Supported Browsers: The browser supported by start attribute are listed below: 
 

  • Google Chrome 
  • Edge version 12 and above
  • Firefox version 1 and above
  • Internet Explorer 
  • Opera 
  • Safari 

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads