View Full Version : Frames


kh674
02-16-2003, 05:37 PM
PLEASE HELP I DO NOT UNDERSTAND HOW TO USE FRAMES! THE CODE ON THE HOW TO MAKE A BASIC FRAMESET WERE DO I PUT IT ? you see im making a doll page but i cant make the frames where do i put them ?? i know its on the index page but i mean as a text or html code? were ? by the way im using geocities , thanks

Sheila
02-17-2003, 05:51 AM
Put this in index.html (Put ONLY the frame code in index.html....nothing else)

<html>
<head>
<title>My Page</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>



Then save this as left.html

<HTML>
<HEAD>
<TITLE>Your page title goes here</TITLE>
</HEAD>
<BODY>


---Everything that appears on your page will be entered here, text, images etc.---


</BODY>
</HTML>



Save this as right.html

<HTML>
<HEAD>
<TITLE>Your page title goes here</TITLE>
</HEAD>
<BODY>


---Everything that appears on your page will be entered here, text, images etc.---


</BODY>
</HTML>


------

If you are going to put links on your left side and you want them to open in the right frame, you need to target your links.....do this

<a href="link address" target="rightside">Your Link Name</a>

RozyPozy111
02-18-2003, 01:33 AM
[i]Originally posted by Sheila

<HTML>
<HEAD>
<TITLE>Your page title goes here</TITLE>
</HEAD>
<BODY>


---Everything that appears on your page will be entered here, text, images etc.---


</BODY>
</HTML>

What if we are using something like (as said in the original message) Yahoo! Geocities or AOL Hometown EasyDesigner to build our web page? When we use these, we aren't entering plain html into the web page.

Dude128
02-18-2003, 01:52 AM
you cannot use PageBuilder or EasyDesigner to create a frameset page. frames do not work with any kind of 'basic' editor.

you will need to use an advanced editor, or create a .html page using a plain text editor such as Notepad and then upload it