Thursday, April 17, 2008

Creating an Unordered List

    Unordered Lists:

An unordered list is a list of items which are either marked with rounds,squares or with bullets.

For Ex:


  • Country

  • Villages




  • Country

  • Villages




  • Country

  • Villages





An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.

To create such unorderd List use this html code :

Disc bullets list:


<ul type="disc">
<li>Country</li>
<li>Villages</li>
</ul>

Circle bullets list:


<ul type="circle">
<li>Country</li>
<li>Villages</li>
</ul>

Square bullets list:


<ul type="square">
<li>Country</li>
<li>Villages</li>
</ul>

0 comments: