sionvalais said:
I converted my website to xhtml strict, but it won't be validated. Can
anyone tell me what is wrong?
http://www.sionvalais.com/zermatt.php
A validator has probably told you. Here are some of the errors:
1. Line 6, column 40: there is no attribute "CONTENT" (explain...).
<meta http-equiv="imagetoolbar" CONTENT="no" />
In XHTML, element and attribute names are lower-case.
3. Line 34, column 38: there is no attribute "language" (explain...).
<div id="sionvalais"><script language="Javascript"
src="js/menu.js"></script>
In XHTML 1.0 Strict, there is no language attribute on the script element.
4. Line 34, column 67: required attribute "type" not specified
(explain...).
...is"><script language="Javascript" src="js/menu.js"></script>
The required type attribute is missing.
Did you read what is linked from the 'explain' link?