HTML list
List is nothing but the collection of items or elements.There are two type of list are
ordered list,unordered list
UnOrdered List:
UnOrdered List is used for simply using listing the items but if we want the items in the sequence then ordered lists are used.
HTML Unordered List Example
Ordered List:List is nothing but the collection of items or elements.There are two type of list are
ordered list,unordered list
UnOrdered List:
UnOrdered List is used for simply using listing the items but if we want the items in the sequence then ordered lists are used.
HTML Unordered List Example
<html> <body> <b>Fruit List</b> <ul type='disc'> <li>Orange</li> <li>Apple</li> <li>Pine apple</li> </ul> <b>Sports List</b> <ul type='square'> <li>Cricket</li> <li>Foot Ball</li> <li>Hockey</li> </ul> <b>Country List</b> <ul type='circle'> <li>India</li> <li>Usa</li> <li>UK</li> </ul> </body> </html> |
- Orange
- Apple
- Pine apple
- Cricket
- Foot Ball
- Hockey
- India
- Usa
- UK
Ordered List is used for simply using listing the items but the follow some specific.we can use number the text using ol tag.
Example
<html> <body> <b>Fruit List</b> <ol type='1'> <li>Orange</li> <li>Apple</li> <li>Pine apple</li> </ol> <b>Sports List</b> <ol type='A'> <li>Cricket</li> <li>Foot Ball</li> <li>Hockey</li> </ol> <b>Country List</b> <ol type='i'> <li>India</li> <li>Usa</li> <li>UK</li> </ol> </body> </html> |
output
- Orange
- Apple
- Pine apple
- Cricket
- Foot Ball
- Hockey
- India
- Usa
- UK
0 comments:
Post a Comment