<html>
<head>
<title>
An Inline Frame</title>
</head>
<body>

<p>

This is how an Inline Frame works.
</p>

<p>

For this demo, I'll name the iframe "window", and show you how to put pictures or pages in it.
</p>

<iframe name="window" src="images/stella.jpg" width="500" height="400" frameborder="1" align="right"> </iframe>


<table width="200" cellpadding="10" border="1">
<tr>

<td align="center">
<a href="images/stella.jpg" target="window">
<img src="images/stellaT.jpg">
</a>
<p>
Stella</p>
</td>

<td align="center">
<a href="images/sophie.jpg" target="window">
<img src="images/sophieT.jpg">
</a>
<p>
Sophie</p>
</td>
</tr>

<tr>
<td align="center">
<p>See <a href="demo6a.html" target="window">Part A</a> of Exercise 6 in the iframe.</p>
</td>

<td align="center">
<p>See <a href="demo6b.html" target="window">Part B</a> of Exercise 6 in the iframe.</p>
</td>
</tr>
<tr>

<td colspan="2" align="center">
<p>See <a href="iframecode.html" target="window">the code </a> in the iframe.</p>
</td>
</tr>
</table>

<br clear="left" />

As you can see, inline frames can be handy. They are great for displaying information in a small area. Or make a series of thumbnail images as hotlinks and put the larger versions of the image in the iframe. Try it!

</body>
</html>