The unordered list normally comes with <UL>/</UL> but have number of different type of symbols can use to make a list.
Normally unordered list comes with bullets call small black circles.
Example:
Example:
<HTML>
<H1> Different type of Unordered List</H1>
<BODY>
<ul>
<li>Sri lanka</li>
<li>India</li>
<li>USA</li>
<li>UK</li>
</ul>
</body>
</html>
Here is the output of the lesson.(Click on image to enlarge)
Types of Unordered List
Example:-
<HTML>
<H1> Different types of Unordered List</H1>
<BODY>
<h3>Unordered List- Disc </h3>
<ul type="disc">
<li>Sri Lanka</li>
<li>India</li>
<li>USA</li>
<li>UK</li>
</ul>
<h3>Unordered List - Circle </h3>
<ul type="circle">
<li>Sri Lanka</li>
<li>India</li>
<li>USA</li>
<li>UK</li>
</ul>
<h3>Unordered List - Square </h3>
<ul type="square">
<li>Sri Lanka</li>
<li>India</li>
<li>USA</li>
<li>UK</li>
</ul>
</body>
</html>
Here is the output of the lesson.(Click on image to enlarge)