Lesson Seventeen: Unordered Lists

  1. You can add an unnumbered list of African Hippopotamus links using <ul> (unordered list) tags.
    Add an unordered list of links under your <ol> element using this code:

    <h3>If you want to learn more about the magnificent<br> African Hippopotamus, just visit these sites:</h3>
    <ul>
    <li><a href="http://www.wonderclub.com/Wildlife/mammals/hippo.html">The Wonder Club</a></li><br>
    <li><a href="http://www.outtoafrica.nl/animals/enghippo.html">Out of Africa</a></li><br>
    <li><a href="http://www.africaguide.com/wildlife/hippo.htm">The Africa Guide</a></li><br>
    <li><a href="http://www.krugerpark.co.za/africa-hippopotamus.html">Kruger Park</a></li><br>
    </ul>

    Your page should look like this: Sample

Lesson Eighteen: Linking with Images