In the source code, you have:
Code:
<img border="0" src="../images/1.gif" width="120"height="80"></a>
<img border="0" src="../images/2.gif"width="120"height="80"></a>
<img border="0" src="../images/3.gif"width="120"height="80"></a>
the "</a>" tags are being used without having a "<a href="">" tag. To fix it, I think you can make them go in this format:
Code:
<a href="insert_link_here"><img border="0" src="../images/1.gif" width="120"height="80"></a>
<a href="insert_link_here"><img border="0" src="../images/2.gif"width="120"height="80"></a>
<a href="insert_link_here"><img border="0" src="../images/3.gif"width="120"height="80"></a>
This is assuming you want the images to link to another page. If you don't want them to link to another page, then you can just remove the "</a>" tags at the end so that it will look like:
Code:
<img border="0" src="../images/1.gif" width="120"height="80">
<img border="0" src="../images/2.gif"width="120"height="80">
<img border="0" src="../images/3.gif"width="120"height="80">