Forum Moderators: open
Please help me out here if you can.
Thanks!
Could you give a simple example if you have the time?
Thanks again!
frameset (welcome.htm)
<html>
<head>
<title>frame</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
<frame name="menu" scrolling="NO" noresize src="your_menu.htm">
<frame name="main" src="your_homepage.htm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>
</html>
your_menu.htm
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<a href="http://www.webmasterworld.com" target="main">link to outside</a>
</body>
</html>
your_homepage.htm
anything
DaveN