PDA

View Full Version : Frames


HappyMushroom
04-10-2002, 03:48 PM
Can someone help me to make frames that look like this? http://www.vectorstar.net/~twisted/frames.bmp

joeboe
04-10-2002, 10:25 PM
This should do it. Just be sure to replace "filename.htm" with the proper frame sources and make sure you make the proper frames scrollable.

<html>
<head>
<title></title>
</head>

<frameset rows="*,80" frameborder="NO" border="0" framespacing="0">
<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
<frame name="leftFrame" scrolling="NO" noresize src="filename.htm">
<frameset rows="*,209" frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="mainFrame" src="filename.htm">
<frame name="bottomFrame1" scrolling="NO" noresize src="filename.htm">
</frameset>
</frameset>
<frame name="bottomFrame" scrolling="NO" noresize src="filename.htm">
</frameset>


<noframes><body bgcolor="#FFFFFF" text="#000000">
Get With The Times!!!
</body></noframes>
</html>