NESTED LIST
Nested list is a list with in a list. You can form the combination of ordered list with nested unordered list. You just need to place the one list into the other list. Just try out
Simple code as shown below:
<ol>
<li>Pakistan
<ul>
<li> Islamabad
</li>
<li> Lahore
<ul type="rect">
<li> Shadman
</li>
<li> Bahria Town
</li>
<li> Bhati
</li>
<li> Cantt
</li>
</ul>
</li>
<li> Karachi
</li>
</ul>
</li>
<li> India
<ol type="I">
<li> Delhi
</li>
<li> Bombay
</li>
<li> Colcata</li>
</ol>
</li>
<li> America
</li>
<li>Afghanistan
</li>
<li>china
</li>
</ol>
<ol>
<li>Pakistan
<ul>
<li> Islamabad
</li>
<li> Lahore
<ul type="rect">
<li> Shadman
</li>
<li> Bahria Town
</li>
<li> Bhati
</li>
<li> Cantt
</li>
</ul>
</li>
<li> Karachi
</li>
</ul>
</li>
<li> India
<ol type="I">
<li> Delhi
</li>
<li> Bombay
</li>
<li> Colcata</li>
</ol>
</li>
<li> America
</li>
<li>Afghanistan
</li>
<li>china
</li>
</ol>
Result is shown below:
- Pakistan
- Islamabad
- Lahore
- Shadman
- Bahria Town
- Bhati
- Cantt
- Karachi
- India
- Delhi
- Bombay
- Colcata
- America
- Afghanistan
- china
No comments:
Post a Comment