Jump to content

Home

Need help with frames


BongoBob

Recommended Posts

Ok, I am learning HTML, and have moved onto frames. Well I decided to have a links part of my page, so I made one, and followed the tutorial I got from Webmonkey. Her's what I get...

 

Clicky

 

Where the info is, that's where the links are supposed to be, and vicea versa. Here's the code...

 

<HTML>

<FRAMESET COLS = "25%, 75%"

<FRAME SRC = "frame_1.html" NAME = "left_frame">

<FRAME SRC = "index.htm" NAME = "main">

</FRAMESET>

</HTML>

 

 

Any help?

 

:confused:

Link to comment
Share on other sites

<html>

<head>

<title>stuff</title>

</head>

<frameset cols="100%" rows="20%, *">

<frame name="Top" src="program1.html" scrolling="no" noresize marginheight="0" marginwidth="0">

<frameset cols="20%, *">

<frame name="left" src="program2.html" scrolling="auto" marginheight="0" marginwidth="0">

<frame name="right" src="program3.html" scrolling="auto" marginheight="0" marginwidth="0">

</frameset>

</frameset>

<frameset cols="100%" rows="20%", *">

<frame name="left" src="left.html" scrolling="no">

</html>

 

try that on for size...If you still don't get it...I will be home later and we can talk on aim.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...