What are frames? Page 1

Frames are best shown and explained by a diagram. What each do and how they work will be explained later.

How to set up Frames.

The main tag for frames is the <frameset> tag. The tag replaces the


tag in normal HTML documents. The tag tells how the frames are divided among the browsers.

This is how a basic frame set would look

<frameset cols=�25%, 75%�>

<frame source =�columnone.html� name=�columnone�>

<frame source=�columntwo.html� name=�columntwo�>

</frameset>

</html>

As you can tell there is still <html> tags, but that�s it. The <frameset> tag divides the browser, sense we added the cols tag it divided the browser vertically. The 25% and 75% is how the browser gets divided.