HTML Frames

Frames divide a browser window into several pieces or panes, each pane containing a separate XHTML/HTML document.

One of the key advantages that frames offer is that you can then load and reload single panes without having to reload the entire contents of the browser window. A collection of frames in the browser window is known as a frameset.
The window is divided up into frames in a similar pattern to the way tables are organized: into rows and columns. The simplest of framesets might just divide the screen into two rows, while a complex frameset could use several rows and columns.
There are few drawbacks also you should be aware of with frames are as follows:

  • Some browsers do not print well from framesets.
  • Some smaller devices cannot cope with frames, often because their screen is not big enough to be divided up.
  • Some time your page will be displayed differently on different computers due to different screen resolution.
  • The browser’s back button might not work as the user hopes.
  • There are still few browsers who do not support farme technology.

Frame Creation:

To create a frameset document, first you need the <frameset> element, which is used instead of the <body> element. The frameset defines the rows and columns your page is divided into, which in turn specify where each individual frame will go. Each frame is then represented by a <frame> element.

1. The <frameset> Element:

  • The <frameset> tag replaces the <body> element in frameset documents.
  • The <frameset> tag defines how to divide the window into frames.
  • Each frameset defines a set of rows or columns. If you define frames by using rows then horizontal frames are created. If you define frames by using columns then vertical farmes are created.
  • The values of the rows/columns indicate the amount of screen area each row/column will occupy.
  • Each farme is indicated by <frame> tag and it defines what HTML document to put into the frame.

Example:

Now create three HTML files called top_frame.htm, main_frame.htm and bottom_frame.htm to be loaded into three frames with some content.

2. The <frameset> Element Attributes:

Following are important attributes of <frameset> and should be known to you to use frameset.

  • cols: specifies how many columns are contained in the frameset and the size of each column. You can specify the width of each column in one of four ways:
    • Absolute values in pixels. For example to create three vertical frames, usecols=”100, 500,100″.
    • A percentage of the browser window. For example to create three vertical frames, use cols=”10%, 80%,10%”.
    • Using a wildcard symbol. For example to create three vertical frames, usecols=”10%, *,10%”. In this case wildcard takes remainder of the window.
    • As relative widths of the browser window. For example to create three vertical frames, use cols=”3*,2*,1*”. This is an alternative to percentages. You can use relative widths of the browser window. Here the window is divided into sixths: the first column takes up half of the window, the second takes one third, and the third takes one sixth.
  • rows: attribute works just like the cols attribute and can take the same values, but it is used to specify the rows in the frameset. For example to create two horizontal frames, use rows=”10%, 90%”. You can specify the height of each row in the same way as explained above for columns.
  • border: attribute specifies the width of the border of each frame in pixels. For example border=”5″. A value of zero specifies that no border should be there.
  • frameborder: specifies whether a three-dimensional border should be displayed between frames. This attrubute takes value either 1 (yes) or 0 (no). For example frameborder=”0″ specifies no border.
  • framespacing: specifies the amount of space between frames in a frameset. This can take any integer value. For example framespacing=”10″ means there should be 10 pixels spacing between each frames.

3. Loading Content – The <frame> Element:

The <frame> element indicates what goes in each frame of the frameset. The <frame> element is always an empty element, and therefore should not have any content, although each <frame> element should always carry one attribute, src, to indicate the page that should represent that frame.

Example:

Following are important attributes of and should be known to you to use frames.The <frame> Element Attributes:

  • src: indicates the file that should be used in the frame. Its value can be any URL. For example, src=”/html/top_frame.htm” will load an HTML file avaible in html directory.
  • name: attribute allows you to give a name to a frame. It is used to indicate which frame a document should be loaded into. This is especially important when you want to create links in one frame that load pages into a second frame, in which case the second frame needs a name to identify itself as the target of the link.
  • frameborder: attribute specifies whether or not the borders of that frame are shown; it overrides the value given in the frameborder attribute on the <frameset> element if one is given, and the possible values are the same. This can take values either 1 (yes) or 0 (no).
  • marginwidth: allows you to specify the width of the space between the left and right of the frame’s borders and the frame’s content. The value is given in pixels. For example marginwidth=”10″.
  • marginheight: allows you to specify the height of the space between the top and bottom of the frame’s borders and its contents. The value is given in pixels. For example marginheight=”10″.
  • noresize: By default you can resize any frame by clicking and dragging on the borders of a frame. The noresize attribute prevents a user from being able to resize the frame. For example noresize=”noresize”.
  • scrolling: controls the appearance of the scrollbars that appear on the frame. This takes values either “yes”, “no” or “auto”. For example scrolling=”no” means it should not have scroll bars.
  • longdesc: allows you to provide a link to another page containing a long description of the contents of the frame. For example longdesc=”framedescription.htm”

Browser Support

The <noframes> Element:

If a user is using any old browser or any browser which does not support frames then <noframes> element should be displayed to the user.
In XHTML you must place a <body> element inside the <noframes> element because the <frameset> element is supposed to replace the <body> element, but if a browser does not understand the <frameset> element it should understand what is inside the <body> element contained in the <noframes> element.
You can put some nice message for your user having old browsers. For example Sorry!! your browser does not support frames.

Frame’s name and target attributes:

One of the most popular uses of frames is to place navigation bars in one frame and then load the pages with the content into a separate frame.
As you have already seen, each <frame> element can carry the name attribute to give each frame a name.This name is used in the links to indicate which frame the new page should load into. Consider this very simple example, create following content in index.htm file:

There are two columns in this example. The first is 200 pixels wide and will contain the navigation bar. The second column or frame will contain the main part of the page. The links on the left side navigation bar will load pages into the right side main page.
Keep some content in main.htm file and the links in the menu.htm file look like this:

Inline Frames – The <iframe> Element:

You can define an inline frame with the <iframe> tag. The <iframe> tag is not used within a <frameset> tag. Instead, it appears anywhere in your document. The <iframe> tag defines a rectangular region within the document in which the browser displays a separate document, including scrollbars and borders.
Use the src attribute with <iframe> to specify the URL of the document that occupies the inline frame.
All of the other, optional attributes for the <iframe> tag, including name, class, frameborder, id, longdesc, marginheight, marginwidth, name, scrolling, style, and title behave exactly like the corresponding attributes for the <frame> tag.
Following is the example to show how to use the <iframe>. This tag is used along with <body> tag:

Note: This tag is not supported by HTML5

Loading