chris linford get going guides
item1

3 page frameset

A standard layout for a framset is to use three pages. The first is a banner acros the top, the second the left hand navigation page and third the content page.

To add a banner we need to use a row comamand to create a row before the col command to create the two columns from the previous example.

frameset rows="129,*"

The frame will be 129 pixels deep, the depth of the image, with the * stating the rest to be the size of the browser window.

We will also need to add another page for the banner. This I have named top.html. All the page has is my banner image which is centered on the page.

You can drag this from the sample page and use when you want to experiment.

Frameset saved as Frameset5.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"><html>

<html>

<head>

<title>Frameset page</title>

</head>

<frameset rows="129,*" frameborder= 0>

<frame src="top.html" name="top">

<frameset cols="150,*" frameborder="0">

<frame src="left2.html" name="left">

<frame src="right.html" name="right">

 

</frameset>

 

</html>

Page saved as top.html

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<title>top frame</title>

</head>

<body><center>

<img src="banner.jpg">

</body>

</html>

samplebutton1

facebook
linkedin
twitter
youtube
item7 return to home page Chris Linford Get Going Guides return to home page chris linford get going guides