netscape viewing problem

liunx

Guest
hi there,<br />
my webiste pages appear fine in IE<br />
but in netscape the html code appears instead of the pages.<br />
what am i doing wrong?<br />
<br />
thanks!<br />
<!-- m --><a class="postlink" href="http://www.shapeofshade.com">http://www.shapeofshade.com</a><!-- m --><!--content-->it looks fine for me on my Netscape 7.0<br />
what version of Netscape are you using?<!--content-->looks fine to me in Mozilla 1.3<!--content-->i'm using NS 4.7...perhaps that's why.<br />
the sub pages display the html code, eg: <!-- m --><a class="postlink" href="http://www.shapeofshade.com/shows">http://www.shapeofshade.com/shows</a><!-- m --><!--content-->The pages do not appear to have htm or html extensions. You will need to rename the files, and the links on the main page to end in htm or html, or if you want separate directories, load an index.html file into each directory. i.e. your "Shows" directory/folder. <br />
<br />
I think that may be your problem.<br />
<br />
Cheers,<br />
Erica<!--content-->Your code is very sloppy. It is not even close to valid. (<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.shapeofshade.com%2F&doctype=HTML+4.01+Transitional&charset=iso-8859-1+%28Western+Europe%29">http://validator.w3.org/check?uri=http% ... +Europe%29</a><!-- m -->)<br />
<br />
1. Line 10, column 6: end tag for element "HEAD" which is not open<br />
<br />
2. Line 11, column 66: document type does not allow element "BODY" here<br />
To fix, remove the closing "/" in the last meta tag:<br />
<meta content="MSHTML 5.50.4616.200" name="GENERATOR" /><br />
<br />
should be<br />
<br />
<meta content="MSHTML 5.50.4616.200" name="GENERATOR"><br />
<br />
4. Line 23, column 91: there is no attribute "HIGHT"<br />
To fix, spell "HEIGHT" correctly. You should also quote all attribute values. You must quote them if they are not numerical.<br />
<br />
6. Line 33, column 57: end tag for "A" omitted, but its declaration does not permit this<br />
This is a nesting error. You need to close tags in the proper order. The last tag to be opened should be the first tag to be closed.<br />
<font size=1>> <a href=http://www.htmlforums.com/archive/index.php/"/shows">more upcoming shows</font></a><br />
<br />
should be<br />
<br />
<font size=1> <a href=http://www.htmlforums.com/archive/index.php/"/shows">more upcoming shows</a></font><br />
Most of the rest of the errors are either the same as the ones I've pointed out, or they point to a lack of "alt" attributes in the "image" tags.<!--content-->thanks all for the help. much appreciated.<!--content-->Good post doogxela.<!--content-->
 
Back
Top