<!DOCTYPE html 
     PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Inline Frame</title>
</head>

<body bgcolor="lightyellow">
<h1>Inline Frames</h1>
<h2>Learn who's who</h2>

<table width="400">
<tr>
<td align="right">
<p>Click on the links <br /> below to see picture </p>
<a href= "img/samface.gif" target="floater"> Sam <a> <br> 
<a href= "img/michael.gif" target="floater"> Michael <a> <br> 
<a href= "img/paul.gif" target="floater"> Paul <a> <br> 
<td>

<td>
<iframe name="floater" src="hello.gif"  width="140" height="180" frameborder="1">
	<p>Your browser does not support iframes, otherwise you will see fruits here </p>
</iframe>
</td>

</table>

</body>