Frames


Learning HTML is really fun! Now, so quickly, you already know how

to let people send you mail.

Now to learn how to add frames:

Do this:
<FRAMESET cols="50%,50%">
<FRAME SRC="page1.htm">
<FRAME SRC="page2.htm">
</FRAMESET>

I will explain this:
<FRAMESET> tag tells the browser that the page
will contain frames.
<cols="50%,50%"> specifies the amount of space taken up by each frame.
<FRAME SRC> tag helps you to place the name of the page you
you want inside the frame.

note:Each frame inside the <FRAMESET> tag is a different web page.

I will give you an example: <FRAMESET cols="20%,80%">
<FRAME SRC="email.htm">
<FRAME SRC="deepanjanswebpage5.htm">

This will give us this.

Next--->

Send feedback