help with coding

liunx

Guest
Can anyone tell me why this coding works in the editor (HTML-kit) but does not work when down loaded thru a brouser (MIE 6.0). All files are in the same folder and all are lower case. <br />
<br />
Thanks Roger<br />
<br />
<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<br />
<html><br />
<head><br />
<title>SEAHORSE budget(bu)</title><br />
</head><br />
<br />
<frameset cols="3%,94%,3%" bordercolor="#6699ff" /> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" ><br />
<br />
<frameset rows="80%,20%" /><br />
<frame name="A" src=http://www.webdeveloper.com/forum/archive/index.php/"pic/pc10.jpg" marginwidth="150" /><br />
<frame name="B" src=http://www.webdeveloper.com/forum/archive/index.php/"bumo.htm" scrolling="no" /><br />
</frameset><br />
<br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" /><br />
</frameset><br />
<br />
</html><br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<br />
<br />
<br />
<html><br />
<br />
<head><br />
<br />
<title>Budget(mobu)</title><br />
<br />
</head></head><br />
<br />
<table summary="" border="4" bordercolor="#6699ff" cellpadding="2" cellspacing="2" align="center"><br />
<br />
<tr><br />
<br />
<td> <a href=http://www.webdeveloper.com/forum/archive/index.php/"pg1.jpg" target="A">PAGE 1</a></td><br />
<br />
<td> <a href=http://www.webdeveloper.com/forum/archive/index.php/"pg2.jpg" target="A">PAGE 2</a></td><br />
<br />
<td> <a href=http://www.webdeveloper.com/forum/archive/index.php/"pg3.jpg" target="A">PAGE 3</a></td><br />
<br />
<td> <a href=http://www.webdeveloper.com/forum/archive/index.php/"hp.htm" target="_top" >HOME PAGE</a></td></tr><br />
<br />
<br />
<br />
</tr><br />
<br />
</TABLE><br />
<br />
</html><!--content-->I'm not sure what you mean by "it doesn't work", but you are missing <body> tags. You can usually get away with that, but if you can elaborate more on what the problem is (what it does in your editor and what happens in IE), maybe I can be of more assistance. A link would also be helpful if you have it online.<br />
<br />
Cgraz<!--content-->Yes, you didn't really state what the problem was, but I can tell you now that you have the wrong doctype... try this one:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"<br />
"http://www.w3.org/TR/html4/frameset.dtd"><!--content-->It looks like you need to separate the two sections of code into their own html pages. <br />
<br />
I hate frames, which is why I use Dreamweaver to make them... to save myself a headache.<!--content-->
 
Back
Top