fabrizioqdm
certificazione w3c
vorremmo ottenere la certificazione w3c ma facendo un check dal sito ufficiale ci da' questi errori che non possiamo modificare. Potreste risolverli voi in qualche modo?
Validation Output: 6 Errors
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 attribute on the root element. For example, the root element for XHTML might look like: <html xmlns="http://www.w3.org/1999/xhtml">
Line 1259, Column 116: required attribute "alt" not specified …c="ReadySkins/Skin7/images/alert_javascriptIsNotEnable.gif" border="0" /></div>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
Line 1452, Column 1656: ID "staticPage" already defined …11602.JPG" alt="" border="0" /><span></span></a></li></ul><div id="staticPage">
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
Line 1263, Column 15: ID "staticPage" first defined here \t\t\t\t\t<div id="staticPage"> Line 1540, Column 36: document type does not allow element "a" here; assuming missing "li" start-tag \t\t<a href="default.asp?cmd=regForm">
Line 1544, Column 6: end tag for "li" omitted, but OMITTAG NO was specified \t</ul>
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 1540, Column 3: start tag was here \t\t<a href="default.asp?cmd=regForm"> Line 1598, Column 77: document type does not allow element "div" here …Verdana, Arial, Helvetica, sans-serif"><p style="color:#c90906; font-weight:bo…
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).
|