HTML Frames

Display HTML Pages In Frames In One Window

Separate HTML Pages can be displayed in one browser window. Each HTML Page acts independently. With frames, different websites can be viewed at the same time.

Frames are not easy to manipulate because each frame acts independently. The body tag cannot be used with the frame tag. Each frame must have a source which is the location of the web page.

This tutorial uses the HTML frameset and frame elements. The frameset tag holds the frames in rows or columns. The frame tag holds an individual web page.

    Tools are required:

  • Text editor.
  • HTML.
  • Web Pages.
  • Browser to view output.

Optional Download and install suitable text editor

Any text editor with regular expression support will work. To select a reviewed lightweight programming editor read the Ojambo.com Lightweight Programming Editors.

HTML-Frames.html file

The first frameset specifies two columns whose widths are 25% and 75%. The left column has one row frame and source page is HTML-Frame-Left. The right column has two rows which are both 50% of the height and named Right-Top and Right-Bottom respectively.

HTML-Frame-Left.html file

The file will be loaded into the the left frame and will display the heading one text “Left Frame”.

HTML-Frame-Right-Top.html file

The file will be loaded into the the top right frame and will display the heading one text “Right Top Frame”.

HTML-Frame-Right-Bottom.html file

The file will be loaded into the the bottom right frame and will display the heading one text “Right Bottom Frame”.

How to Use:

Run the HTML-Frames.html file in your favourite browser.
You will see that the the three frames have loaded three pages.

Demonstration:

Ojambo.com HTML Frames Tutorial

Image Missing
Ojambo.com HTML Frames Tutorial

Conclusion:

Frames can be used to load different pages into the same browser window. Frameset tag is used to specify the columns or rows needed. The frame tag requires a source which is usually the URL to the web page.

    Recommendations:

  1. Specify the columns needed in a parent frameset tag..
  2. Use the frameset tag before each frame.
  3. Do not use the body tag with frame tags.