<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Frameset Example</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset rows="50%,50%" frameborder="0" > <frame src="yourlocalfile.htm" scrolling="auto" name="topframe"> <frame src="http://www.abc123.com" scrolling="auto" name="bottomframe"> </frameset> <noframes><body>No Frames content here </body></noframes> </html>
<a href="filename.htm" target="bottomframe">LINK</a>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Iframe Example</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <p>Your content here </p> <p> </p> <p>Etc</p> <p> </p> <p> </p> <p>Etc</p> <p> </p> <iframe name="bottomframe" src="http://www.abc123.com" frameborder="0" width="100%" height="50%"></iframe> </body> </html>
<a href="filename.html" target="bottomframe">LINK</a>