Website Tutorials
For Beginners
HTML Help & Tutorials
Dreamweaver Tutorials
Home > HTML Tutorial
HTML Tutorials - Frames
Getting Started    CSS    Text    Linking    Graphics    Fill-out Forms    Frames    Comments

What is Frame?

Frames allow you to divide the page into several rectangular areas, and to display a seperate web page in each area. Each of those rectangular areas is called a "frame". Each frame is independent of the others.

The disadvantages of using frames are:

How to Use Frames?

Let's say you want to display two seperate frames that contains different websites in our website. Then, you would type:

<frameset cols="50%,50%">
<frame src="http://www.google.com">
<frame src="http://www.yahoo.com">
</frameset>


The outcome is:





Getting Started    CSS    Text    Linking    Graphics    Fill-out Forms    Frames    Comments