In html to create a list of different or similar object a list tag is used. There are following types of list used in html:
Unorder list : The unorder list can be created by using lists tag. In this each item is insert one by one. There are following tags used in unorder list:
<ul>
<li>……..</li>
<li>………</li>
</ul>
Order list : It is similar to unorder list the main different in between them is that it uses numbers instead of dots. The following tag are being used in order list.
<ol type=”1″>
<li>…….</li>
<li>…….</li>
</ol>