View Full Version : Where do i place the link code into my frame code?


PinkIce
06-08-2003, 08:50 PM
i need help! where do u place the link code into my frame code? do i do it after the page that i want it to be on?

example

<html>
<head>
<title>My Page</title>
</head>
<frameset rows="160,*">
<frame src="my url" NAME="top" scrolling=no>
<frameset cols="220,*">
<a href="newpage.html" target="rightside">Name of my link</a>

or do i put it at the end of the code?

example

<html>
<head>
<title>My Page</title>
</head>
<frameset rows="160,*">
<frame src="my top frame page url" NAME="top" scrolling=no>
<frameset cols="220,*">
<frame src="my left frame page url" NAME="left" scrolling=yes>
<frame src="my right frame page url" NAME="right" scrolling=yes>
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="the click here page url">Click Here</a>
</noframes>
</html>


or is it something totaly differant? im so confused

cadi
06-08-2003, 11:13 PM
I'm not sure I understand what you want, but let me give it a shot and we'll see if I'm helpful. ;)

Say you've got a big content frame ("content") and a navigation frame on the right ("nav"). A link from nav to content fits right into the page you use for the nav frame . . .

<a href="something_or_other.html" title="Wow! So exciting!" target="content">

Does that help?