Friday, 28 June 2013

NESTED LIST

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>

Result is shown below:

  1. Pakistan
    • Islamabad
    • Lahore
      • Shadman
      • Bahria Town
      • Bhati
      • Cantt
    • Karachi
  2. India
    1. Delhi
    2. Bombay
    3. Colcata
  3. America
  4. Afghanistan
  5. china

No comments:

Post a Comment