Introduction
The HTML lists tag is used for specifying a
list item is ordered, unordered and menu lists. Lists commonly are found in documents, including web pages. They are an easy and effective way to itemize such things as elements, components, or ingredients. The most common HTML lists are ordered and unordered lists.
unordered list
The HTML <ul> tag
is used to define an unordered list. Unordered lists are straight lists with a
graphical bullet. You can choose between different types of bullets using the
type attribute. Each list item can have a different bullet.
Example
- <ul>
- <li>Example of list</li>
- <li>Nice list!</li>
- <li>Last list item!</li>
- </ul>
Internet explorer

Type attribute of <ul> List
Specifies the shape of the bullets of each list
item.
Type= Circle
- <ul type="circle">
- <li>Example of list</li>
- <li>Nice list!</li>
- <li>Last list item!</li>
- </ul>
Internet explorer

Type=square
- <ul type="square">
- <li>Example of list</li>
- <li>Nice list!</li>
- <li>Last list item!</li>
- </ul>
Internet explorer

Ordered list
Ordered lists allow you to create lists where the items are in sequential, numerical order.
- <ol>
- <li>Example of list</li>
- <li>Nice list!</li>
- <li>Last list item!</li>
- </ol>
Internet explorer

Start attribute of <ol> List
Specifies a number to start the list with
instead of 1.
- <ol start="5">
- <li>Example of list</li>
- <li>Nice list!</li>
- <li>Last list item!</li>
- </ol>




Sonia Bhadouria VishvkarmaPosted Oct 3, 2012, 6:05 AM
Good Article.....
keshav singhPosted Jun 12, 2012, 1:17 AM
nice