Click to See Complete Forum and Search --> : Link href images from a table to a named image in an inline frame


Testlady
03-23-2008, 11:38 PM
This is my first posting, so excuse me if I seem confused. This is for a homework assignemnt in my first HTML class. I am trying to link href images that appear in a table to a named image in an inline frame. The links show up as links, but where the image should appear, I get the can not find page message from internet explorer. I don't know if you can't use the "target" element in the table or what. I have tried everything - I would appreciate any help you may give.Thanks
The inline frame is:
<iframe src="img01.jpg" name="images" frameheight="240" frame width="310"
border="0" marginheight="0" style="float: left; margin: 0 5 0 5"
alt=width"300" height="225">

Frames not supported</br>

<a href="img01.jpg" frameheight="240" frame width="310"
border="0" marginheight="0" style= "float: left; margin: 0 5 0 5">Image 1</a>
</iframe>

And the table is:
<table width="100" height="240" border="1" style="background-color: yellow; float: left" cellspacing="0" cellpadding="5" bordercolor="purple" bordercolorlight="#FFC0FF">
<tr>
<td valign="top" style="font-family: sans-serif; font-size: 0.8em">

<a href="img src="img01.jpg" target= "images">Front View</a><br />
<a href="img src="img02.jpg" target= "images">Rear View</a><br />
<a href="img src="img03.jpg" target= "images">Side View</a><br />
<a href="img src="img04.jpg" target="images">Dining Room</a><br />

KDLA
03-24-2008, 12:35 PM
This:
<a href="img src="img01.jpg" target= "images">Front View</a>
is incorrect. You've inserted part of another tag in the href path. Check your book for the correct linking. (Hint, part bolded.)

Testlady
03-24-2008, 02:07 PM
Thanks so much - You would not believe the number of things I tried and the hours I spent on that one little thing. Once I saw your message and looked at the code, I knew immediately what was wrong. Thanks again
Susan