View Full Version : targetting


Felicity...
04-24-2003, 12:57 PM
i looked around the forum for this questen... i didnt really find any thing

i needed to link a page togther...

I have normal frames on my webpage but when i tried to do this

<ahref="http://www.geocities.com/shimmazzzz/Index">home</a>
it opened where i'd written my links

suggested on another forum questen was this...

<br>
<A href="http://www.geocities.com/shimmazzzz/Index.html" target="T">home</a><br>
but it just opened in a new window...!

can any body tell me what i'm doing wrong

Lemon Squash
04-24-2003, 01:10 PM
Add .html to the end of T.

<br>
<A href="http://www.geocities.com/shimmazzzz/Index.html" target="T.html">home</a><br>

Felicity...
04-24-2003, 01:13 PM
i did put .html on it when i did my website code - it didnt work its still opening in a new window

pb&j
04-24-2003, 01:23 PM
in your page that shows the frame setup, you should have entered a NAME value in each of the FRAME tags. find out the value of NAME of the frame you would like to have the links open up into, then use that as your TARGET value in your links.

example...
<frame src="starterpage.html" name="rightside">

then in your links to open into that frame...
<a href="newpage.html" target="rightside"> text here </a>

Felicity...
04-24-2003, 01:25 PM
ok... Thankies everyone i finaly did it!

Felicity...
04-25-2003, 03:08 PM
umm... it didnt work

i dont understand where do i put it what...?

Sheila
04-25-2003, 03:30 PM
Your frame code is messed up. Delete what you have, and copy and paste this code instead....

<html>
<head>
<title>Crystal Ice</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside" noresize>
<frame src="right.html" name="rightside" noresize>
</frameset>
<body>
</body>
<noframes>
<a href="http://www.angelfire.com/stars4/felicity763/left.html">Click Here</a>
</noframes>
</html>