Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
In this example we create ordered list using ol tag but we use the start attribute to define the starting counter of the list .
Code:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Ordered List from a specific number</title> </head>
<body> <center> <p> Following is an example of order list but in this time we specify the start number. </p> </center> <p> Following is the are next top five students. <ol start="5"> <li>Ossama Ali</li> <li>James Colomabs</li> <li>Tom mark</li> <li>Amr Diab</li> <li>Mark Cuban</li> </ol> </p>
</body> </html>
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )