FRAME


Within the <FRAMESET> tags there can exist several <FRAME> tags, which define a single frame. The <FRAME> tag has no matching end tag. Here are four possible attributes for the <FRAME> tag:

SRC="url"
This takes the URL of the document to be displayed in this particular frame. FRAMEs without SRC attributes are displayed as a blank space the size the frame would have been.
NAME="window_name"
Used to assign a name to a frame so it can be targeted by links in other documents. This is optional; by default, all windows are unnamed.
Names must begin with an alphanumeric character.
Named frames can have their window targeted with the TARGET attribute.
SCROLLING="yes|no|auto"
Should the frame have a scrollbar or not? Yes results in scrollbars always being visible on that frame. No results in scrollbars never being visible. Auto instructs the browser to decide wether scrollbars are needed or not. The SCROLLING attribute is optional; the default value is auto.
NORESIZE
This has no value, and indicates that the frame is not resizeable by the user. This attribute is optional; by default all frames are resizeable.

Example:
<FRAME SRC="page1.html" NAME="main" SCROLLING="no">