frame_parent.html
<html> <head> <title>Frame Example</title> </head> <frameset cols="25\%,*" > <frame name="leftside" src="frame_child1.html"> <frame name="rightside" src="frame_child2.html"> </frameset> <noframes> No frames, huh? Too bad - go download Netscape 2.0 or better... </noframes>
<noframes>...</noframes> tag is what is displayed
the someone's browser (or equivalent of Netscape) cannot support or handle
frames.
<a href=...</a> tag where to display the the file that it is linked
to. You do this by adding the ``target'' attribute to the <a href=...</a>
tag, like this :
<a target="rightside" href="mp.html">Monty Python</a> - displayed on the right side<p> <a target="leftside" href="mp.html">Monty Python</a> - displayed on the left side<p> <a target="_top" href="mp.html">Monty Python</a> - displayed on the "top"<p>