Page 1 of 1

question

Posted: Tue Nov 08, 2005 4:42 pm
by method_man
hey im makin a website for me and my friend to put stuff we make on and im having a little problem.
it has a column on the left side that i want the link you click on to show up on the right column but for some reason it shows up on the left column.
here is the site: http://twarowski.atspace.com/index.html

here is the index page:

Code: Select all

<TITLE> index.html </TITLE>
<META NAME="Edit Plus 2.20" CONTENT="EditPlus">
<META NAME="Matt Twarowski" CONTENT="">
<META NAME="Games, Art, Drawings, Basic, PHP, HTML, Pictures" CONTENT="">
<META NAME="This site contains stuff that me and my neighbor Josh Lisse have made using Blitz Basic and just drawings weve drawn or pictures weve taken." CONTENT="">
</HEAD>

<frameset cols="200,*">

<frame src="forms.htm">
<frame src="home.htm"
name="showframe">

</frameset>

<BODY>

</BODY>
</HTML>
this is the left column code:

Code: Select all

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> forms.htm </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>

<BODY>
<p><u><a href="home.htm">
Home</a></u>
<br>
<br>
<u><a href="mattsgames.htm">
Matt's Games</a></u>
<br>
<br>
<u><a href="mattsdrawnpictures.htm">
Matt's Drawn Pictures</a></u>
<br>
<br>
<u><a href="mattscomputergraphicspictures.htm">
Matt's Computer Graphics Pictures</a></u>
<br>
<br>
<u><a href="mattsdigitolcamerapictures.htm">
Matt's Digitol Camera Pictures</a></u>
<br>
<br>
<u><a href="mattsflashmovies.htm">
Matt's Flash Movies</a></u>
<br>
<br>
<u><a href="mattsstories.htm">
Matt's Stories</a></u>
<br>
<br>
<u><a href="joshesgames.htm">
Joshes Games</a></u>
<br>
<br>
<u><a href="joshesdrawnpictures.htm">
Joshes Drawn Pictures</a></u>
<br>
<br>
<u><a href="joshescomputergraphicspictures.htm">
Joshes Computer Graphics Pictures</a></u>
<br>
<br>
<u><a href="joshesdigitolcamerapictures.htm">
Joshes Digitol Camera Pictures</a></u>
<br>
<br>
<u><a href="joshesflashmovies.htm">
Joshes Flash Movies</a></u>
<br>
<br>
<u><a href="joshesstories.htm">
Joshes Stories</a></u>
<br>
<br>
<u><a href="workbymattandjosh.htm">
Work By Matt and Josh</a></u></p>

</BODY>
</HTML>
thanks, methodman

Posted: Tue Nov 08, 2005 5:08 pm
by Nathaniel

Code: Select all

<a href="foo.html" target="showframe">Foo</a>

Posted: Tue Nov 08, 2005 5:20 pm
by method_man
yay it works! thanks nathaniel :D