How nice would it be to make each menu link load into the content page? We do this by naming each frame and setting the correct base target inside menu.html.
HTML Code:
<html><head></head>
<frameset rows="20%,*">
<frame name="title" src="title.html">
<frameset cols="30%,*">
<frame name="menu" src="menu.html">
<name="content" src="content.html">
</frameset>
</html>
HTML Code:
<html>
<head>
<base target="content">
</head>
...
</html>
0 comments:
Post a Comment