Saturday, 23 June 2012

HTML NESTED LIST

HTML NESTED LIST IS ONE OF THE LIST OF HTML


When one list type is included in other list type then such type of succession is usually referred to as Nested list

<html>
<head> 
    <title>Nested</title>
</head>
<body>
    <center><h1>NIET</h1></center>
    <ol type="1">
    <li>CSIT</li>
    <ol type="a">
    <li>Professors</li>
    <ol type="i">
    <li>Ravi</li>
    </ol>
   </ol>
   </ol>
</body>
</html>

SAVE WITH .HTML and after open the file on web browser

No comments:

Post a Comment