QUOTE(Mike007 @ 30 Jun, 2008 - 10:35 AM)

First you are not really obeying the rules of XHTML that states that every tag has to be closed, even the img tag (you have a few of these lying around). Another thing is that you have to declare the namespace in XML documents so that is why the parser tells you have a mistake, take a look at your html tag. It should be something like this:
CODE
<html xmlns="http://www.w3.org/1999/xhtml">
Where xmlns is short for xml namespace.
I'm not sure why you aren't seeing the head tag. All my pages have that identical tag attached.
QUOTE
Finally try validating your markup and css with W3C validation tools:
XHTML:
http://validator.w3.org/CSS:
http://jigsaw.w3.org/css-validator/The validator can't fully validate the page because of...
QUOTE
"The detected DOCTYPE Declaration "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">" has been suppressed and the DOCTYPE for "XHTML 1.0 Transitional" inserted instead, but even if no errors are shown below the document will not be Valid until you update it to reflect this new DOCTYPE. "
What drives me nuts about the validator is it comes up with errors saying there are parsing errors, which there aren't and tags aren't ended...but they are. Such as..
CODE
<h2>designer</h2>
How is the h2 tag
not closed?
so...
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
I don't how what other declaration can be made.
Mike007, I didn't write the java script. I was thrown into maintaining this website after the guy we hired left. I wouldn't know a ended java statement if it bit me in the ....
Cheif, thanks for your input, it did help some.
This post has been edited by rodstol: 17 Jul, 2008 - 12:03 PM