Ik heb mijn website gecheckt met http://validator.w3.org en ben daar gestuit op 5 errors en 2 fouten in mijn script, dat betreft deze fouten:
PHP
Line 18, Column 23: document type does not allow element "style" here
<style type="text/css">
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
Line 944, Column 8: unterminated comment: found end of entity inside comment
</html>
Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->. This error may appear if you forget the last "--" to close one comment, therefore including the rest of the content in your comment.
Line 19, Column 1: comment started here
<!--
Line 944, Column 8: end tag for "style" omitted, but OMITTAG NO was specified
</html>
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
Line 18, Column 1: start tag was here
<style type="text/css">
Line 944, Column 8: "html" not finished but document ended
</html>
Line 944, Column 8: end tag for "html" omitted, but OMITTAG NO was specified
</html>
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
Line 2, Column 1: start tag was here
<html xmlns="http://www.w3.org/1999/xhtml">
Toon Meer
weet iemand hoe deze fouten ten eerste op te lossen zijn, ten tweede zijn veroorzaakt en ten 3de ook misschien fouten hebben opgeleverd verder in het script die niet te zien zijn via de check?
en dan als laatste vraag, tasten deze fouten de seo van de site aan?
Groeten Diamondboy