<html>

<head>
<title>Example 4</title>
</head>

<body>

<h1>Example 4 -- Images</h1>

<h3>An image in its own paragraph.</h3>

<p> <img src=ex4images/elephant.jpg> </p>

<h3>An image with alternate text</h3>

<p> <img src=ex4images/purpleflowe.jpg alt="Missing purple flower"> </p>

<h3>Two images in the same row</h3>
<p> 
<img src=ex4images/lily.jpg>
<img src=ex4images/purpleflower.jpg>
</p>

<h3>A Table of Four Images</h3>
<table cellpadding=3>
    <tr> 
        <td><img src=ex4images/dog.jpg></td>
        <td><img src=ex4images/cat.jpg></td>
    </tr>
    <tr> 
        <td><img src=ex4images/frog.jpg></td>
        <td><img src=ex4images/fish.jpg></td>
    </tr>
</table>

<h3>An Image Table with Text</h3>

<table cellpadding=3>
    <tr> 
        <td><img src=ex4images/dog.jpg></td>
        <td><img src=ex4images/cat.jpg></td>
    </tr>
    <tr>
        <td align=center><b>Dog</b></td>
        <td align=center><b>Cat</b></td>
    </tr>
    <tr> 
        <td><img src=ex4images/frog.jpg></td>
        <td><img src=ex4images/fish.jpg></td>
    </tr>
    <tr>
        <td align=center><b>Frog</b></td>
        <td align=center><b>Fish</b></td>
    </tr>
</table>

<h3>A Clickable Thumbnail Image</h3>

<table cellpadding=3>
    <tr>
        <td><a href=wolfpage.htm><image src=ex4images/wolf.jpg border=0></a>
    </tr>
    <tr>
        <td>Click for larger image.</td>
    </tr>
</table>

</body>

</html>