HTML Unorder List
The Unorder list element is used to present a list of item,which is separated by white space or is marked by bullets.
Syntax
<ul>
<li>.. </li>
<li>..</li>
</ul>
Example for html Unorder List
<UL>
<li> Apple</li>
<li>Orange</li>
<li>Mango</li>
</UL>