
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Set the start value of an ordered list in HTML?
Use the start attribute to set the start value of an ordered list in HTML i.e.
<ol start = " ">
Add the value of where you want to start above.
Example
You can try to run the following code to implement the start attribute −
<!DOCTYPE html> <html> <head> <title>HTML ol Tag</title> </head> <body> <p>Programming Languages Rank Usage:</p> <ol start = "5"> <li>Java</li> <li>C++</li> <li>C</li> </ol> </body> </html>
- Related Articles
- Create an ordered list in HTML
- How to create an ordered list in HTML?
- How to create an ordered list with list items numbered with numbers in HTML?
- How to create an ordered list with list items numbered with lowercase letters in HTML?
- How to create an ordered list with list items numbered with uppercase letters in HTML?
- How to create an ordered list with list items numbered with uppercase roman numbers in HTML?
- How to create an ordered list with list items numbered with lowercase roman numbers in HTML?
- Make an Ordered list with Bootstrap
- Style the numbering characters in an ordered list with CSS
- How do we define the start of a term in a definition list in HTML?
- How can I set the default value for an HTML element?
- Set a delay for the start of an animation with CSS
- Python Pandas - Set the categories of the CategoricalIndex to be ordered
- HTML start Attribute
- HTML start Attribute

Advertisements