A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-ol-start-attribute/ below:

HTML | <ol> start Attribute

HTML | <ol> start Attribute

Last Updated : 21 Jun, 2022

The HTML <ol> start Attribute is used to specify the start value for numbering the individual list item of the ordered list. 

Syntax: 

<ol start="number"> 

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

Example: This Example illustrates the use of start attribute in the <ol> element. 

html
<!DOCTYPE html>
<html>

<head>
    <title>HTML ol start Attribute</title>
    <style>
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>

<body>
    <h1>GeeksForGeeks</h1>
    <h2 style="color: green;"> 
            HTML ol 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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4