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 a nested ordered list using OL tag. One is inner ordered list and one is outer ordered.
Code:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Nested order list</title>
</head> <body> <center> <p> In this example we use ordered list as inner one for other list. </p> </center> Following are the top two employees ranked by performance at each department monthly: <ol> <li>Sales Department <ol> <li>Tom Jakson</li> <li>Alen Boson</li> </ol> </li> <li>Marketing Department <ol > <li>Jack Adam</li> <li>Ahmed Ali</li> </ol> </li> <li>Development Department <ol> <li>Noha Kamal</li> </ol> </li> </ol>
</body> </html>
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )