Multi Frames

liunx

Guest
Hi im trying to make a web site with 5 frames i want a top and bottom banner frame where in top i can put a page title and bottom a html marquee with update info and a left and right contents bar but with the contents bar i want it so that when u click either the left or right links they will apear in the center main page. is this possible?<!--content-->yes - thats one of the reasons for using frames! You must now learn how frames work and how to TARGET you HREF links to the middle page. Its VERY easy.<br />
<br />
start here (<!-- m --><a class="postlink" href="http://www.google.com/search?sourceid=navclient&q=using+frames+html">http://www.google.com/search?sourceid=n ... rames+html</a><!-- m -->)<br />
<br />
5 frames! crikey are you sure! I dont think I can write a framset for 5. I would probably have 3 columbs in a framset (i.e. in the index.htm) and then the middle frame (i.e. called main)i would have a new page with frame set of 3 rows (i.e. content.htm)<!--content-->5 frames, but the main frame in teh middle seems a little small to show any content.<br />
<br />
<br />
<html><br />
<head><br />
<title>Untitled Document</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
</head><br />
<br />
<frameset cols="80,*" frameborder="NO" border="0" framespacing="0"> <br />
<frame name="leftFrame" scrolling="NO" noresize src=http://www.htmlforums.com/archive/index.php/"left.html"><br />
<frameset cols="*,80" frameborder="NO" border="0" framespacing="0"> <br />
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0"> <br />
<frame name="topFrame" scrolling="NO" noresize src=http://www.htmlforums.com/archive/index.php/"top.html" ><br />
<frameset rows="*,80" frameborder="NO" border="0" framespacing="0"> <br />
<frame name="mainFrame" src=http://www.htmlforums.com/archive/index.php/"main.html"><br />
<frame name="bottomFrame" scrolling="NO" noresize src=http://www.htmlforums.com/archive/index.php/"bottom.html"><br />
</frameset><br />
</frameset><br />
<frame name="rightFrame" scrolling="NO" noresize src=http://www.htmlforums.com/archive/index.php/"right.html"><br />
</frameset><br />
</frameset><br />
<noframes><br />
<body bgcolor="#FFFFFF"><br />
<br />
</body></noframes><br />
</html><!--content-->
 
Back
Top