An Unordered list can be created by using the UL tag You use the UL tag and then enter every line that will be listed between an LI and /LI tag

for example the following code 
<ul>
  <li>item one </li>
  <li>item two </li>
  <li>item three </li>
  <li>item Four </li>
  <li>item five </li>
<li></li>

This code will look like this

Unordered lists have bullets before them. The items in the list can be any color, size or style.

The items on the list can be also a link by using a this code

<ul>
  <li><a href="http:www.link1.com"> link name1 </a></li>
  <li><a href="http:www.link2.com"> link name2 </a></li>
  <li><a href="http:www.link3.com"> link name3 </a></li>
  <li><a href="http:www.link4.com"> link name4 </a></li>
  <li><a href="http:www.link5.com"> link name5 </a></li>
</ul>

This code will look like this







The items on the list can also be pictures

<li>

<li><img src="pic1.gif></li>

<li><img src="pic2.gif></li>

<li><img src="pic3.gif></li>

</ul>

This will look like this