To cover what frames are for look at this quote :blink:

With frames - which divide Web pages into multiple, scrollable regions - you can present information in a more flexible and useful fashion. Each region, or frame, has several features:

* 1. It can be given an individual URL, so it can load information independent of the other frames on the page;
* 2. It can be given a NAME, allowing it to be targeted by other URLs, and;
* 3. It can resize dynamically if the user changes the window's size. (Resizing can also be disabled, ensuring a constant frame size.)

These properties offer new possibilities:

* 1. Elements that the user should always see, such as control bars, copyright notices, and title graphics can be placed in a static, individual frame. As the user navigates the site in "live" frames, the static frame's contents remain fixed, even though adjoining frames redraw.
* 2. Table of contents are more functional. One frame can contain TOC links that, when clicked, display results in an adjoining frame.
* 3. Frames side-by-side design allows queries to be posed and answered on the same page, with one frame holding the query form, and the other presenting the results.

Frames have been submitted to the Internet Engineering Task Force and the World Wide Web Consortium for consideration as Internet standards.
Yes, I know my HTML Kung Fu

The no frame tag.

Some browsers don&#39;t know frames so that&#39;s why you have the <NOFRAMES> tag. If your user has a browser that doesn&#39;t support frames, always make a noframed version .

Frames.

The frames act as a body, so

So the code should be like this:

Code:
&#60;HTML&#62;
&#60;HEAD&#62;
&#60;TITLE&#62;Testing&#60;/TITLE&#62;
&#60;/HEAD&#62;
&#60;&#33;--I use capitals for the tags so you can see it more clearly;&#41;--&#62;
&#60;FRAMESET ROWS&#34;75%, *&#34; COLS=&#34;*, 40%&#34;&#62;
&#60;FRAME SRC=&#34;whereeveryourframefileis1.html&#34;&#62;
&#60;FRAME SRC=&#34;whereeveryourframefileis2.html&#34;&#62;
&#60;FRAME SRC=&#34;whereeveryourframefileis3.html&#34;&#62;
&#60;FRAME SRC=&#34;whereeveryourframefileis4.html&#34;&#62;

&#60;NOFRAMES&#62;
&#60;P&#62;Sorry, but it appears that your browser doesn&#39;t support frames.&#60;/P&#62;
&#60;/NOFRAMES&#62;

&#60;/FRAMESET&#62;
&#60;/HTML&#62;
You should tweak the settings and there you have it, frames. The wonderful world of frames. I don&#39;t use frames but I did try this out. Hope I helped

I could&#39;ve wrote more but My hands are tired