HTML | <ol> start Attribute Last Updated : 21 Jun, 2022 Comments Improve Suggest changes Like Article Like Report 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: Google Chrome Edge version 12 and aboveFirefox version 1 and aboveInternet Explorer Opera Safari Comment More infoAdvertise with us Next Article HTML target Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <ol> type Attribute The HTML <ol> type attribute specifies the kind of marker to use in the list (letters or numbers). This attribute allows customization of ordered list markers, offering options like decimal numbers, uppercase or lowercase letters, and uppercase or lowercase Roman numerals, tailoring the list a 2 min read HTML <ol> type Attribute The HTML <ol> type attribute specifies the kind of marker to use in the list (letters or numbers). This attribute allows customization of ordered list markers, offering options like decimal numbers, uppercase or lowercase letters, and uppercase or lowercase Roman numerals, tailoring the list a 2 min read HTML <a> target Attribute The HTML <a> target Attribute is used to specify where to open the linked document. This attribute enhances the functionality and user experience by allowing developers to control the behavior of links.Syntax<a target="_blank | _self | _parent | _top | framename"\> Attribute Values_blank 1 min read HTML | <th> scope Attribute The HTML <th> scope Attribute is used to specify the header cell is used for header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers. Syntax: <th scope="col | row | colgroup | rowgroup"> Attribute Values 1 min read HTML | <td> scope Attribute The HTML <td> scope Attribute is used to specify the cell is used for header row, column, colgroup or rowgroup. This attribute does not display any visual effect on the browser but it is used for screen readers. Note: This attribute is not supported by HTML5. Syntax: <td scope="col | row | 1 min read 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 an ordered list.Supported Tag:<ol>Syntax: <ol start = "value"> list items...</ol>Attribute Values: It contain a numeric value that defines the start value of the f 2 min read Like