html project with target

stefan1988

Geek Trainee
i have this problem i dont know what to do about it im making a frame website about my family heritage for school

ok so i got the index and this is my code


<HTML>
<HEAD><TITLE>Family Heritage Project</TITLE></HEAD>

<FRAMESET COLS="15%,75%">
<FRAME SRC=navbar.htm>
<FRAME SRC=plain.htm NAME=main>
</FRAMESET>

</HTML>

for my navbar.htm i got this code i made it using a flash navbar generator to make it look fancy


<HTML>
<HEAD></HEAD>
<BODY BGCOLOR=black>

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"


codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swfl

ash.cab#version=5,0,0,0"
WIDTH=124 HEIGHT=120>
<PARAM NAME=movie

VALUE="bubbles.swf?tarframe=main&exbackground=FF0033&makenavfield0=His

tory&makenavurl0=history.htm&makenavfield1=Countries&makenavurl1=count

ries.htm&makenavfield2=Coat of

Arms&makenavurl2=coatarms.htm&makenavfield3=Pictures&makenavurl3=pictu

res.htm&makenavfield4=Stories&makenavurl4=stories.htm">
<PARAM NAME=loop VALUE=false>
<PARAM NAME=menu VALUE=false>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=scale VALUE=noborder>
<PARAM NAME=salign VALUE=LT>
<PARAM NAME=wmode VALUE=transparent>
<PARAM NAME=bgcolor VALUE=#000000>

<EMBED

src="bubbles.swf?tarframe=main&exbackground=FF0033&makenavfield0=Histo

ry&makenavurl0=history.htm&makenavfield1=Countries&makenavurl1=countri

es.htm&makenavfield2=Coat of

Arms&makenavurl2=coatarms.htm&makenavfield3=Pictures&makenavurl3=pictu

res.htm&makenavfield4=Stories&makenavurl4=stories.htm" loop=false

menu=false quality=high scale=noborder salign=LT wmode=transparent

bgcolor=#000000 WIDTH=124 HEIGHT=120

TYPE="application/x-shockwave-flash"

PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1

_Prod_Version=ShockwaveFlash"></EMBED>

</OBJECT>

<a href="http://www.guistuff.com/"><img border="0"

src="http://www.guistuff.com/images/11dot.gif" width="1"

height="1"></a>

<script language = "javascript">
<!--
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects.outerHTML = theObjects.outerHTML;}
//-->
</script>

</HTML>


it has to do with the browsers im using.
i tried with firefox as well with internet explorer and it doesnt work on any of them. in school it wourld perfectly using internet explorer

is supposed to display the page in the index but no it opens another window like if i had TARGET=_blank and for target i specified to be main on the generator but is weird because on school it worked perfectly i believe it has to do with the browsers but i dont know how could i keep working and test out my page so tomorrow i dont have any suprises

any help is appreciated
 
Back
Top