Shoutbox

Frames in HTML. - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Frames in HTML. (/showthread.php?tid=68156)

Frames in HTML. by Oxy on 11-07-2006 at 07:34 PM

Hi, i was wondering if anyone knew how to do seperate frames in a windows in HTML code? I want something like this:

[Image: framesba9.th.png]

Any help?


RE: Frames in HTML. by Jimbo on 11-07-2006 at 07:41 PM

Try this,  its sort of what you want:

code:
<HTML>
<HEAD>
<TITLE>A frameset document</TITLE>
</HEAD>
<FRAMESET cols="10%,57%">
  <FRAMESET rows="*,200">
      <FRAME src="contents_of_frame1.html">
      <FRAME src="contents_of_frame2.gif">
  </FRAMESET>
</HTML>



RE: Frames in HTML. by Chris4 on 11-07-2006 at 07:42 PM

:google:

code:
<html>

<head>
<title>HTML Frames - An Advanced Frame Layout</title>
</head>

<frameset rows="20%,80%" framespacing="20" border="20">

<frame src="header.htm">

<frameset cols="25%,75%">
<frame src="menu_adv.htm" name="menu">
<frame src="chapter1.htm" name="content">
</frameset>

</frameset>

</html>
http://www.ironspider.ca/frames/borderwidth.htm
RE: Frames in HTML. by Oxy on 11-07-2006 at 08:13 PM

Ah yes, thanks chris4 and guy Fawks!