Adding Frames to webpages

They have: 6 posts

Joined: Dec 1999

Hi does anyone know how to *add* or include frames to homepages... i have no clue. check out my site at http://drive.to/twins it needs frames... i know the basics to HTML but have no clue about frames.. does anyone wanna actually help me??????

x.x Melissa x.x

Jack Michaelson's picture

He has: 1,733 posts

Joined: Dec 1999

To create frames is maybe too much scripting to explain everything, but I hope this will get you on the way:

Create the following HTML file:

<html>
<head>
<title>whatever</title>
<!-- frames -->
<frameset rows= "25, *">
<frame name="whatever" src="whatever.html" marginwidth="10" marginheight="3" scrolling="auto" border="0" resize="yes">
*">
<frame name="whatever2" src="whatever2.html" marginwidth="10" marginheight="3" scrolling="auto" border="0" resize="yes"></frame>
</frameset>
</head>
</html>

You can replace the rows for cols (columns) and even create cols inside rows or rows inside cols.
The sources of the both frames are HTML-files you made.
If you'd like to see more just visit a site that has frames and view the source (Menu-->View-->Source)

I hope it helps you.

------------------
Jack Michaelson
[email protected]
! Click here for my profile !

[This message has been edited by Jack Michaelson (edited 13 December 1999).]

Shakespeare: onclick || !(onclick)

They have: 2,390 posts

Joined: Nov 1998

They have: 6 posts

Joined: Dec 1999

Thanks for all your replies.. i will look at tutorial thank you..

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.