Building a Frameset

Building a frameset requires you to declare the frameset and its attribute, the frame name and its attributes and then if necessary nest the framesset within each other to create the desired frame result.


<HTML>

<HEAD>
<TITLE>Sample Frameset Document</TITLE>
<FRAMESET ROWS="110,*" border="0" frameborder="1" framespacing="0" bordercolor="#000000">
		<FRAME NAME="header" SRC="header.html" SCROLLING="no" NORESIZE MARGINHEIGHT="0" MARGINWIDTH="0">
	<FRAMESET COLS="150,*" border="0" frameborder="1" framespacing="0" bordercolor="#000000">
		<FRAME NAME="menu" SRC="menu.html" SCROLLING="no" NORESIZE MARGINHEIGHT="0" MARGINWIDTH="0">
			<FRAME NAME="text" SRC="text.html" SCROLLING="auto" NORESIZE MARGINHEIGHT="0" MARGINWIDTH="0">
		</FRAMESET>
	</FRAMESET>
</HEAD>
<BODY BACKGROUND="" BGCOLOR="#ffffff" TEXT="#000000" LINK="#008000" VLINK="#0000ff" ALINK="#ff0000">
	<NOFRAMES>
	<p>	Sorry, your browser doesn't support frames!</p>
		</BODY>

</HTML>



<< Back