In the last post we studied about the definition list....Now lets study about nested list...
Nested lists are lists inside a list.....unable to understand?ok type in the following code.....
<html>
<body>
<h2>A Nested List</h2>
<ol>
<li>Coffee</li>
<li>Tea
<ol>
<li>Black tea</li>
<li>Green tea</li>
</ol>
</li>
<li>Milk</li>
</ol>
</body>
</html>
Your result must be somewhat like this:
So know you know what is a nested list...and from the next post we will start with tables
Nested lists are lists inside a list.....unable to understand?ok type in the following code.....
<html>
<body>
<h2>A Nested List</h2>
<ol>
<li>Coffee</li>
<li>Tea
<ol>
<li>Black tea</li>
<li>Green tea</li>
</ol>
</li>
<li>Milk</li>
</ol>
</body>
</html>
Your result must be somewhat like this:
So know you know what is a nested list...and from the next post we will start with tables

Comments
Post a Comment