
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
Advertisements