help with targeting links to specific frame

ahawks

Junior Member
Sep 30, 2002
11
0
0
ok i'm using frames and my header frame contains links and the main frame contains my home page. when I click on links in the header I want them to open in the main frame not a new window. Here is my code I can't figure out what's wrong.

<html>
<head>
<title>Chevy Camaro</title>
</head>

<frameset rows="64,*">
<frame name="header" scrolling="no" noresize target="main" src="banner1.htm">
<frame name="main" src="index1.htm" scrolling="auto" noresize>
<noframes>

<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>

</noframes>
</frameset>

</html>

Thanks