HTML <ol> Tag
The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.
Example
<!DOCTYPE html> <html> <body> <ol> <li>rahul</li> <li>sunil</li> <li>pankaj</li> </ol> <ol start="10"> <li>rahul</li> <li>sunil</li> <li>pankaj</li> </ol> </body> </html>