View Full Version : Frames and Geocities...?


MELemmer22
05-24-2003, 06:22 PM
I am working on creating a website under geocities as a host, but I'm having a hard time working with frames using the HTML editor geocities offers. Does anyone know of another free webhosting site that is easier to deal with HTML on? Or a certain way to work with frames through geocities? Please help me!

Cherchezlafemme
05-24-2003, 06:28 PM
Well state your specific frames problem

I suggest www.brinkster.com

MELemmer22
05-24-2003, 06:52 PM
Well I used this code on my index page....

<HTML><HEAD><TITLE>title</TITLE></HEAD>

<FRAMESET ROWS="30%,70%">
<FRAME SRC="left.html" NAME="left">
<FRAME SRC="right.html" NAME="right">
</FRAMESET>

<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>

</HTML>

And then this is the code i used for the left...

<html>
<head>
<title>LEFT</title>
</head>
<bgcolor="#000000">
<basefont="tahoma" size="3" color="#FFFFFF">
<p><b>hey this is the left frame</b></p>
<body>
</body>
</html>

And this is the code i used for the right...

<html>
<head>
<title>RIGHT</title>
</head>
<body>
<bgcolor="#FFFFFF">
<basefont="tahoma" size="3" color="#000000">
<p><b>hey this is the right frame</b></p>
</body>
</html>

I know there isn't much content in either frame, but I just put little content to test it out, and when i go to view my index page It shows up as this: http://www.geocities.com/melheart292/index.htm

Thanks for any help !

Cherchezlafemme
05-24-2003, 07:22 PM
It's just fine, what do you want it to turn out like?

MELemmer22
05-24-2003, 07:36 PM
Hey thanks for your help...i figured out what i was doing wrong and got it to work. Thanks again!