Errors found while checking this document as HTML 4.01 Transitional!

Result: 26 Errors, 1 warning(s)
:
: iso-8859-1
: HTML 4.01 Transitional
Root Element: HTML
Options

Help on the options is available.

↑ Top

Validation Output: 26 Errors

  1. Error Line 44, Column 26: an attribute value must be a literal unless it contains only name characters
    <table border=0 width=100% cellpadding=0 cellspacing=0><tr><td align="center"><…

    You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary.

  2. Error Line 46, Column 112: required attribute "ALT" not specified
    …ages/home.gif" width="140" height="18"></a><a href="modules.php?name=kirmesfot…

    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>.

  3. Error Line 46, Column 236: required attribute "ALT" not specified
    …s/account.gif" width="140" height="18"></a><a href="modules.php?name=fahrgesch…

    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>.

  4. Error Line 46, Column 360: required attribute "ALT" not specified
    …downloads.gif" width="140" height="18"></a><a href="modules.php?name=Modellbau…

    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>.

  5. Error Line 46, Column 481: required attribute "ALT" not specified
    …es/submit.gif" width="140" height="18"></a><a href="modules.php?name=Archiv"><…

    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>.

  6. Error Line 46, Column 599: required attribute "ALT" not specified
    …es/topics.gif" width="140" height="18"></a><a href="modules.php?name=Impressum…

    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>.

  7. Error Line 46, Column 719: required attribute "ALT" not specified
    …ges/top10.gif" width="140" height="18"></a></td></tr><tr><td width="100%" heig…

    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>.

  8. Error Line 53, Column 6: document type does not allow element "HTML" here
    <html><!-- Anfang des Topsites Codes der Listinus-Toppages -->

    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).

  9. Error Line 54, Column 58: document type does not allow element "A" here
    …ck.listinus.de/76039/" target="_blank"><img src="http://icon.listinus.de/76039…

    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).

  10. Error Line 67, Column 7: "HEAD" not finished but containing element ended
    </html><table border="0" align="center" width="138" cellpadding="0" cellspacing…

  11. Error Line 67, Column 7: end tag for "HTML" which is not finished
    </html><table border="0" align="center" width="138" cellpadding="0" cellspacing…

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  12. Error Line 67, Column 104: there is no attribute "BACKGROUND"
    …0" cellspacing="0"><tr><td background="themes/DeepBlue/images/table-title.gif"…

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  13. Error Line 67, Column 327: required attribute "ALT" not specified
    …c="themes/DeepBlue/images/pixel.gif" width="100%" height="3"></td></tr></table>

    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>.

  14. Error Line 80, Column 360: required attribute "ALT" not specified
    …c="themes/DeepBlue/images/pixel.gif" width="100%" height="3"></td></tr></table>

    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>.

  15. Warning Line 85, Column 44: cannot generate system identifier for general entity "new_topic"
    …center><a href="modules.php?name=News&new_topic=1"><img src="images/topics/php…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  16. Error Line 85, Column 44: general entity "new_topic" not defined and no default entity
    …center><a href="modules.php?name=News&new_topic=1"><img src="images/topics/php…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  17. Error Line 85, Column 53: reference to entity "new_topic" for which no system identifier could be generated
    … href="modules.php?name=News&new_topic=1"><img src="images/topics/phpnuke.gif"…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  18. Info Line 85, Column 43: entity was defined here
    …<center><a href="modules.php?name=News&new_topic=1"><img src="images/topics/ph…
  19. Error Line 86, Column 6: document type does not allow element "HTML" here
    <html>

    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).

  20. Error Line 87, Column 105: "RESIZE" is not a member of a group specified for any attribute
    … height="1400" scrolling="yes" resize name="Kirmesfotos" frameborder="0"></ifr…

  21. Error Line 87, Column 139: document type does not allow element "IFRAME" here
    …ight="1400" scrolling="yes" resize name="Kirmesfotos" frameborder="0"></iframe>

    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).

  22. Error Line 88, Column 7: end tag for "HTML" which is not finished
    </html>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  23. Error Line 91, Column 79: document type does not allow element "DIV" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …-power.de Kirmesfotos im Netz!<br><div>Bilderserien von Fahrgesch&auml;ften/Fe…

    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

    One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

  24. Error Line 91, Column 174: document type does not allow element "DIV" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …d Aufbaubilder seit 2003<br></div><div>Aufbau , Spielzeit Fotos vom weltgr&oum…

    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

    One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

  25. Error Line 92, Column 5: document type does not allow element "DIV" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    <div>r</div><br>

    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

    One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

  26. Error Line 93, Column 129: document type does not allow element "DIV" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …backend.php</a> or <a href="ultramode.txt">ultramode.txt</a><div><br></div><br>

    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

    One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

  27. Error Line 96, Column 16: end tag for "TABLE" omitted, but its declaration does not permit this
    </center></body>

    • You forgot to close a tag, or
    • you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.

    The next message, "start tag was here" points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag.

  28. Info Line 40, Column 1: start tag was here
    <table border="0" cellpadding="0" cellspacing="0" width="1224">
  29. Error Line 96, Column 16: end tag for "TABLE" omitted, but its declaration does not permit this
    </center></body>

    • You forgot to close a tag, or
    • you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.

    The next message, "start tag was here" points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag.

  30. Info Line 38, Column 62: start tag was here
    … text="#000000" link="0000ff"><br><br><table border="0" cellpadding="0" cellsp…

↑ Top