Learn HTML Code Tutorial Reference Guideback to Frames Tutorial

A Very Basic Example of HTML Frames

This is a basic example of using frames in a web page. The HTML used to create this page looks like this:

<HTML>
<HEAD>
<TITLE>A Basic Example of Frames</TITLE>
</HEAD>

<FRAMESET ROWS="75%, *" COLS="*, 40%">
   <FRAME SRC="framea.html">
   <FRAME SRC="frameb.html">
   <FRAME SRC="framec.html">
   <FRAME SRC="framed.html">

   <NOFRAMES>
   <H1>No Frames? No Problem!</H1>
   Take a look at our 
   <A HREF="basic.noframes.html">no-frames</A> 
   version.
   </NOFRAMES>

</FRAMESET>

</HTML>