This document uses frames : frame « Tags « HTML / CSS






This document uses frames

  
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final/EN">
<HTML>
<HEAD>
<TITLE>Simple Frame Example</TITLE>
</HEAD>

<FRAMESET COLS="250, *">

<FRAME SRC="fileone.htm" NAME="Controls">
<FRAME SRC="filetwo.htm" NAME="Display">

<NOFRAMES>This document uses frames. Please follow this link
to a <A HREF="noframes.htm">noframes</A>version.
</NOFRAMES>

</FRAMESET>
</HTML>


//File: fileone.htm


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<HTML>
<HEAD>
  <TITLE>File One for Figure 9-04</TITLE>
</HEAD>

<BODY BGCOLOR="#FFFFFF">

<FONT SIZE="4"><B>File 1</B></FONT>

</BODY>
</HTML>


//File: filetwo.htm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<HTML>
<HEAD>
  <TITLE>File Two for Figure 9-04</TITLE>
</HEAD>

<BODY BGCOLOR="#FFFFFF">

<FONT SIZE="4"><B>File 2</B></FONT>

</BODY>
</HTML>



           
         
    
  








Related examples in the same category

1.'frame' creates a single frame within the 'frameset' element
2.Frameset in Columns
3.Frameset in Rows
4.If the frameset is not support
5.Frameset: Column inside Row
6.Noresize Frameset
7.Frameset column with size
8.Frame target: Display, _new, _self, _top
9.Floating Frame Example
10.Frames example
11.'marginheight' sets the size, in pixels, of the top and bottom margins of a frame
12.'marginwidth' sets the left and right margins in pixels
13.'noresize' Example