FRAMES

FRAMES is the term used to describe two or more webpages in the same browser window. Each frame can display the contents of another webpage (URL). Frames are often used as menus for site navigation.

Frames are defined in sets: a set of two (2) or more.

The <FRAMESET></FRAMESET> tags are used to define frames in a webpage. Frames can be nested (frames with frames).

These tages may include additional instructions. For example, this piece of code divides a browsers window in half (side-to-side).

<FRAMESET COLS = "50%,50% " >
<FRAME NAME="Frame1" RESIZE>
<FRAME NAME="Frame2" RESIZE>
</FRAMESET>
<NOFRAMES>

See Example