you have 15 errors in your
html that you need to sort out.
the two most obvious ones are :
Line 4, Column 1: Missing xmlns attribute for element
html. The value should be:
http://www.w3.org/1999/xhtml.
<html>
Many Document Types based on
XML need a mandatory xmlns="" on the root element. For example, the root element for
XHTML will look like:
<
html xmlns="
http://www.w3.org/1999/
xhtml"
xml:lang="en" lang="en">
Line 41, Column 7: end tag for element "scrip" which is not open.
</scrip>
The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.