Text Tags Basic Tags


Frames


<frameset></frameset>

Defines the beginning and the end of the set of frames. Can contain one or multiple sets of frames. Can also be nested within other framesets.

Attributes:
<frameset rows="value,value">: defines the rows within a frameset in either pixels or as a percentage.
<frameset cols="value,value">: defines the columns within a frameset in either pixels or as a percentage.

<frame></frame>

Defines a single frame or region within a frameset.

Attributes:
<frame src="URL">: specifies the HTML document that should be displayed within that frame.
ex. <frame src="example1.html">
<frame name="?">: gives the frame a name, so that it may be targeted by other frames.
<frame marginwidth=#>: defines the left and right margins for the frame. The value must be at least 1.
<frame marginheigh=#>: defines the top and bottom margins for the frame. The value must be at least 1.
<frame scrolling=?>: sets whether the frame has a scrollbar. The values may be "yes", "no", or "auto". The default is auto, so that if the text should exceed what the frame can display, scrollbars will appear; if it can all fit on the page, then no scrollbars will appear.
<frame noresize>: disables the user from being able to resize the frame.

Return to Main Page Information Systems & Technology