How to add more than One HTML Document in a single Browser ?

By | February 28, 2011

Hi…

There may arise certain situations where you need to include more than one HTML document in the same browser.

But how?

It’s simple. It’s by using FRAMES of HTML.
FRAMES can be included inside FRAMESET.

Let’s see an example.

<frameset cols="200,400">
   <frame src="http://www.coderzheaven.com" />
   <frame src="http://www.google.com" />
</frameset>

This will create two column frames in the browser with www.coderzheaven in one frame with 200 pixels, and www.google.com in another frame with 400 pixel.

You can also give cols percentage as well. Like cols=”25%,75%”.

🙂

Leave a Reply

Your email address will not be published. Required fields are marked *