Line 2, Column 12: there is no attribute "XMLNS". - This is caused by the tag being . Your document doctype is HTML, but the xmlns tag is only used if your doctype is XHTML. So either change your doctype, or remove the xmlns attribute completely.
Line 8, Column 77: NET-enabling start-tag requires SHORTTAG YES. This is caused by some problems with HTML compatability. You are closing a meta tag with
but in HTML the closing / is not needed.
Line 9, Column 55: document type does not allow element "LINK" here.; Line 17, Column 6: end tag for element "HEAD" which is not open.; Line 19, Column 5: document type does not allow element "BODY" here. - These three bugs are all caused by problems in the validator, and once you fix the bug above, they will all go away.
Line 235, Column 29: there is no attribute "COLOR".
This is caused by a sematic error. You are trying to set a color on a horizontal rule, remove the color attribute to fix this.
Line 276, Column 18: there is no attribute "HEIGHT". - This error is due to a common problem. In HTML there should not be a height on a table. The height of the table should always be based upon the height of the content inside of it. If you need to set a height on a container use a DIV instead. If you don't then just remove the height attribute.
Line 298, Column 91: there is no attribute "BORDERCOLOR". - Border color cannot be called in this manner. Simply replace the
tag here with | rather than mixing CSS and HTML.
Line 301, Column 29: there is no attribute "SCROLLDELAY";Line 301, Column 34: element "MARQUEE" undefined.. - These bugs are going to be a bigger issue. Marquee's are not valid. Period. You are going to have to accept this error, or replace your scrolling marquee with some javascript code that emulates it's functionality. There isn't any other option in place.
Line 427, Column 123: document type does not allow element "NOSCRIPT" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag. - This last one has me stumpped. I'm really not sure what it's cause is. Maybe you'll get lucky and it is being caused by one of the errors above.
try another time maybe?, maybe something is down
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...
|