Frames Website Template

The frameset element holds frame elements that can display a separate document. The <frameset> element specifies columns or rows in the frameset with percentage/pixels width.

If the browser can’t display frames or is configured not to, it will render the contents of the NOFRAMES element.

<framesetrows="60, *, 25">
  <framesrc="head.html"marginheight="0"marginwidth="0"frameborder="0"scrolling="no">

<framesetcols="225,*,100">
  <framesrc="left.html"marginheight="0"marginwidth="0"frameborder="0"scrolling="yes">

  <framesrc="content.html"marginheight="0"marginwidth="0"frameborder="0"name="content"scrolling="auto"id="content">

  <framesrc="right.html"marginheight="0"marginwidth="0"frameborder="0"scrolling="yes">

  </frameset>

  <framesrc="footer.html"marginheight="0"marginwidth="0"frameborder="0"scrolling="no">

  <noframes>
    <body>
      <p>HTML non frames version of web page goes in here.</p>
    </body>
  </noframes>
</frameset>

Demo: http://svnlabs.com/demo/frame/frameset.html