Seems OK here in Mozilla Firebird 0.7 (which is based on the same rendering engine as Netscape 6.2, with about 1.5 years of bug fixes)
However, all your HTML attributes should have quote marks. To pick a random chunk of your page, this:
HTML Code:
<link rel=StyleSheet href="default.css" type="text/css">
</head>
<body>
<div id=container>
<div id=header>
header
should look like this:
HTML Code:
<link rel="StyleSheet" href="default.css" type="text/css">
</head>
<body>
<div id="container">
<div id="header">
header
And so on for all the other attributes on all the tags. That *might* be the problem.
Bookmarks