A folder "Danny"
Things Inside
Danny:
Index.html
CODE
<HTML>
<HEAD>
<TITLE></TITLE>
<link rel="stylesheet" href="style.css" type="text/css">
</HEAD>
<FRAMESET cols="15%, 85%">
<FRAME src="nav.html" Scrolling=NO NoResize FrameBorder="0" Marginwidth="100" MarginHeight="100">
<frame src="home.html" noresize frameborder="0" name=Home>
<frame src="images.html" noresize frameborder="0" name=IMAGE>
</FRAMESET>
</HTML>
<HEAD>
<TITLE></TITLE>
<link rel="stylesheet" href="style.css" type="text/css">
</HEAD>
<FRAMESET cols="15%, 85%">
<FRAME src="nav.html" Scrolling=NO NoResize FrameBorder="0" Marginwidth="100" MarginHeight="100">
<frame src="home.html" noresize frameborder="0" name=Home>
<frame src="images.html" noresize frameborder="0" name=IMAGE>
</FRAMESET>
</HTML>
Home.html
CODE
<HTML>
<HEAD>
<TITLE></title>
</head>
<body>
<IMG SRC=DANNY.GIF>
</body>
</html>
<HEAD>
<TITLE></title>
</head>
<body>
<IMG SRC=DANNY.GIF>
</body>
</html>
Images.html
CODE
<html>
<head>
<title></title>
</head>
<body>
Some pictures here..
</body>
</html>
<head>
<title></title>
</head>
<body>
Some pictures here..
</body>
</html>
nav.html
CODE
<HTML>
<HEAD>
<TITLE></title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<BR><BR><BR>
<A HREF="home.html" target=Home>Home</A>
<A HREF="images.html" target=IMAGE>Pictures</A>
<A HREF=""></A>
<A HREF=""></A>
<A HREF=""></A>
</body>
</html>
<HEAD>
<TITLE></title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<BR><BR><BR>
<A HREF="home.html" target=Home>Home</A>
<A HREF="images.html" target=IMAGE>Pictures</A>
<A HREF=""></A>
<A HREF=""></A>
<A HREF=""></A>
</body>
</html>
and a
style.css
I typed all of this, and now nav.html, should be my navigation bar which looks great so far, but when i press pictures link, which i used Target=IMAGE so it would appear in the frame i belive. What am i doing wrong? I would really appreciate all the help possible. Thanks.

