Jump to content

[GUIDE]Create a multi-webpage with framesets


SneakyBeaky

Recommended Posts

In this guide you will learn how to design a page with framesets...

 

Framesets are Different webpages that are all shown in one page.

 

The doctype for the frameset is this.

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

You dont have to insert the <body> symbol.

 

You just Write these:

 

Code:

 

<frameset rows="*,*">

 

(write rows if you want the frame to be displayed the one next to the other.

Otherwhise put cols to be displayed the one below the other.

The value * is for the frame to be resized depending on the conditions..otherwhise you can select a size.

You can put any numbers of frames you want...just include the size)

 

Below frameset we put the frames.

 

Here is an example how it looks like.

Code:

 

<frameset rows="300,300,*">
<frame name="example" src="example.html">
<frame name="example2" src="example2.html">
<frame name="example3" src="example3.html">

 

(<-- we first design a page before we write the link in src)

 

 

For links to other pages and everything related with this use your html knowledge Cheesy.

Hope i helped.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...