<FRAME>

Description:

See Frames and how they work and Some Notes About Frames for more information about frames.

Attributes:

name = "name"
Gives the frame a unique name, which can be referenced in the target parameter of the A HREF tag.
bordercolor="color"
The color of the border. 
frameborder =value
Defines the type of border for the framed page.

YES Netscape - Include border
NO Netscape - Do not include border
0 Internet Explorer - Do not include border
framespacing =n
Internet Explorer only. Sets the number of pixels to be left around each frame.
marginheight=n
Set the margin for the top and bottom margin on the page. By default, the browser will decide.
marginwidth=n
Set the margin for the left and right margin on the page. By default, the browser will decide.
noresize
If included, prevents the frame from being resized by the user. If not specified, the user can make the frame larger or smaller as desired.
scrolling = type
Defines the type of scrolling for the framed page.

YES Include scroll bars.
NO Do not include scroll bars.
AUTO Let the browser decide if scroll bars are needed.

Examples:

<frameset framespacing="0" border="0" cols="162,*" frameborder="0">
  <frame name="left" src="igiftshop_menu.htm" scrolling="auto" noresize 
   target="_top">
  <frame name="right" src="http://www.igiftshops.com/claudiasgiftshop.asp" 
   scrolling="auto">
  <noframes>
  <body topmargin="2" leftmargin="2">

  <p>This page uses frames, but your browser doesn't support them.

  </body>
  </noframes>
</frameset>