PDA

View Full Version : Frameset


nikki
11-21-2002, 05:04 AM
Does anyone know the code for a top/middle/bottom/right frameset? I had it and I lost it!

Also the one for top/bottom/left/right. I'm not sure which I want to use yet.

23 1/2 days!!!!


Thanks!
Nikki

fuhgedaboutit
11-21-2002, 07:48 AM
Gee, you're not excited or anything are you Nikki??? LOL!
http://www.fuhgedaboutit.com/days.gif
I got my license 6 years ago. :roll:
________
JCPENNEY GIFT CARD (http://bestfreegiftcard.com/jcpenney-gift-card/)

Helen
11-21-2002, 12:29 PM
LOLOLOLOLOLOLOL

Nikki is not counting the days, Dusty, she's counting the MINUTES :D

Cartman
11-21-2002, 02:40 PM
So, Nikki ... did you pick out the car you wanted for Christmas? I'm sure your folks would get it for you. :shock:

jan
11-21-2002, 02:49 PM
Just be careful Nikki........there's a lotta knuckleheads out there on the road.

Fred
11-21-2002, 03:01 PM
I'll be surprised if she does not have a countdown script on a web page somewhere. There is one on your CPanel if you need one. :D

When I want help I always check Mary's site - http://webcode101.com/frames3.html

I think you will find all that you need here.

Flash ho
11-21-2002, 03:22 PM
Ck your e mail or open DW :cool:

nikki
11-22-2002, 01:32 AM
19 days til your birthday???

A car for Christmas? That's funny. I have to earn money to buy my own if I want one. Dad will match funds, but that's it.

I can't add a counter to my website or it would be there! I'm 27 there.

I didn't get any emails about frames and I can't figure out how to do more than two frames in dreamweaver. I'll try again.

22 1/2 days

Flash ho
11-22-2002, 01:47 AM
opps, I forgot, I'll do it right now.

matching funds, thats 50% !!! That makes the t bird only $23,000!!

Maybe you could start a business?

Mary B.
11-22-2002, 03:00 PM
Here's the bare-bones code for the top-middle-bottom-right frameset:


<html>
<head>
<title>Your Site Title Goes Here</title>
<frameset cols="*,100">
<frameset rows="100,*,100">
<frame name="toprow" src="red.html">
<frame name="middle" src="blue.html">
<frame name="bottom" src="yellow.html">
</frameset>
<frame name="right" src="green.html">
</frameset>
<noframes>This is a framed site, and your browser doesn't support frames.</noframes>
</head>
</html>


And here's the code for top-bottom-left-right:




<html>
<head>
<title>Your Site Title Goes Here</title>
<frameset cols="100,*,100">
<frame name="left" src="purple.html">
<frameset rows="100,*,100">
<frame name="toprow" src="red.html">
<frame name="middle" src="blue.html">
<frame name="bottom" src="yellow.html">
</frameset>
<frame name="right" src="green.html">
</frameset>
<noframes>This is a framed site, and your browser doesn't support frames.</noframes>
</head>
</html>

nikki
11-22-2002, 10:42 PM
Thanks Mary!