Crazy, you're missing a DOC TYPE... the validator will explain to your what you're missing.
Yes if you put information in the <no frames> will help. There are plenty of ways around the frame problem. CSS can do just about anything you want to do with frames/tables.
Here's an example of what you can do with CSS:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN">
<html>
<head>
<meta
content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>TEST</title>
<style type="text/css">
<!--
#NavBar{
border:1px solid black;
margin:0px;
}
#MainContent{
border-width:0 1px 1px 1px; /*to make the middle border look like its 1px */
border-style:solid;
height:400px;
margin:0px;
overflow:auto;
}
-->
</style>
</head>
<body>
<div id="NavBar">This
is
the nav bar</div>
<div id="MainContent">This
is the main content area.
This
is the main content area.
This
is the main content area.
</div>
</body>
</html>
Copy and paste the "This is the main content area
" a few does times and you will see what I mean