OK - if you are going to put sound on your page, it's a good idea to also
put a "Sound Off" button so that people who don't want to hear your music
can just turn it off (my opinion, at least). Or maybe only play it once
rather than a loop into perpetuity!
Here's what Stefan means by "broken font tags" -
<font size="5" color="#000080"><font color="#000080"><img border="0"
src="images/ampersand.gif" width="79" height="87"></font><b>
Note that you have two opening (and redundant) font tags before <img> and
one after (before the <b>). That's an improperly nested arrangement. Both
opening font tags would need to be closed before that <b> could be applied -
or better yet, just delete the second one, e.g.,
<font size="5" color="#000080"><img border="0" src="images/ampersand.gif"
width="79" height="87"></font><b>
Here's another example -
</div>
<center>
<p align="center" style="background-color: ##000000"><font
color="#000000">
<!--webbot ...snip... -->
<img src="_vti_bin/fpcount.exe/?Page=index.html|Image=2" alt="Hit
Counter">
<!--webbot ...snip... -->
</font>
</center>
</font>
(I have snipped out code for clarity)
The nesting here is completely wrong. First the center tag, then a
(unclosed) <p> tag, then a font tag. The closing order should then be
font - p - center, but you have font - center - font! (there is no opening
font to correspond to that one).
(I didn't see any broken table tags, though)
Finally, a well-formed HTML page should always end with </body></html>, but
yours just ends with </body>.
So - the bottom line is that Netscape is just choking on this 'hinky'
markup.
Now, you will probably say "but I don't know HTML, and I haven't touched any
code on the page!", and I would believe you. How did the page get like
this? Honestly, I don't know. When you work ONLY in design view, I do know
that it's possible to *get your design into a place where you cannot get it
back out*, in other words, there are things that you will see on the screen
that you *cannot* delete or change. People who do not know HTML are
frustrated by this all the time. I can only guess that in attempting to
change some of those things, you have invoked some operations that caused
this improper nesting of tags. What would lead to the missing </html> tag,
though, I just cannot imagine.
What is the solution? For this page, the only thing I can see to do would
be to 'heal' it in code view - that shouldn't be too hard, even for someone
new to code view. Or to start over. Or to get someone to do it for you.
Like here -
http://www.murraytestsite.com/lifeofriley.html
(note that this displays in Netscape - all I did was to fix the errors
pointed out by Stefan)
(also note that I made all of your image links into absolute links - you may
want to change that back to relative linking)
(also note that I did not enable the sound or the hit counter)