|
|
|
A frameset is simply an HTML document that tells the browser how to divide the screen into split windows.
The HTML for the above frameset:
<html>
<head>
<title>My Frames Page</title>
</head>
<frameset cols="120,*">
<frame src="menupage.htm" name="menu">
<frameset rows="*,50">
<frame src="welcomepage.htm" name="main">
<frame src="bottombanner.htm" name="bottom">
</frameset>
</frameset>
</html>
|
|
Note that the frameset is only seven lines!
Let's split it all up and add the lines one by one...
|
|
|
|