![]() |
Adam's Advanced HTML Guide- Frames While some people may tell you that frames are irritating and have no practical use in real life, the majority of web designers, including myself, will have to disagree with that. For the uninitiated, frames are individual windows contained within the main window, each capable of containing a separate document. Yes, while it is true that when abused, frames can be a surfer's worst nightmare, but isn't that the case for everything else in life? A nicely designed frames page can actually help tremendously in site navigation and user interaction, and is a technology that should be embraced.
The basic concept of a frame document is this: It contains at least three parts- The Frameset document, which holds all of the frames, and at least two frames: Think of the frameset document as a container that contains two or more separate documents (Frame 1 and Frame 2). The following shows the syntax of a basic two column frame page [Click here for demo first]: Syntax for Frameset document: Syntax for Frame 1: Syntax for Frame 2: The key part to notice here is the syntax for the frameset document, which is the page that holds the individual frames. Instead of the <body> tag, this document uses the <frameset> tag. The "cols" attribute inside this tag tells the browser that you want column frames. Try replacing that attribute with "rows" instead: You'll get row frames instead. Following the <frameset> tag is the <frame> tag, with a "src" property that specifies the path of the document for each individual frame. We then close all this up with </frameset> and </html>, and you get your very first frames document!
The key to creating frames is the <frameset> tag, which cuts out the individual frames. By utilizing this tag more than once in your frames document, you can create more complicated frames, like the one shown below:
Here's the syntax for the frameset document: <html> The first <frameset> tag creates the two main columns, and the second one carves the second column into two additional rows. Using the same idea, you can create frames that are as complicated as you can imagine them to be!
Most tags have attributes that allow you to "fine-tune" the appearance of the tags- frames are no different. I've listed some of the most commonly used frames attributes here:
Go ahead, try adding the above attributes to your frames, and see how it affects the frame's appearance. Recommended resources
|
![]() |