To specify the target page, you need to add the line TARGET="NAME" to the link tag, <A HREF="URL">, so the final
result looks like this.
<A HREF="URL" TARGET="NAME">
The text NAME, is replaced by the name of the frame that you want the result of the link to appear in. Using this, you are
able to have a link in one frame, and the result in another.
In the example below, the HTML for the link is
<A HREF="URL" TARGET="page2"> Click Here <A>
|
index.html - Notepad |
....<HEAD>
<FRAMESET ROWS="50%,50%">
<FRAME SRC="http://www.web-site-1.com" NAME="page1">
<FRAME SRC="http://www.web-site-2.com" NAME="page2">
</FRAMESET>
</HEAD>....
|
|