Open In App

HTML | start Attribute

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: 
 






<!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: 
 

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

 

Article Tags :