HTML Frames :
BASIC EXAMPLE








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...

 << PREVIOUS
READ MORE >>  
















DEVELOPER TIP!





     "Better Than Books - As Easy As It Gets!"