Errors found while checking this document as HTML 4.01 Transitional!

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

Help on the options is available.

Notes and Potential Issues

The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is highly recommended to check these potential issues, and, if necessary, fix them and re-validate the document.

  1. Warning Unable to Determine Parse Mode!

    The validator can process documents either as XML (for document types such as XHTML, SVG, etc.) or SGML (for HTML 4.01 and prior versions). For this document, the information available was not sufficient to determine the parsing mode unambiguously, because:

    • the MIME Media Type (text/html) can be used for XML or SGML document types
    • No known Document Type could be detected
    • No XML declaration (e.g <?xml version="1.0"?>) could be found at the beginning of the document.
    • No XML namespace (e.g <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">) could be found at the root of the document.

    As a default, the validator is falling back to SGML mode.

  2. Warning No DOCTYPE found! Checking with default HTML 4.01 Transitional Document Type.

    No DOCTYPE Declaration could be found or recognized in this document. This generally means that the document is not declaring its Document Type at the top. It can also mean that the DOCTYPE declaration contains a spelling error, or that it is not using the correct syntax.

    The document was checked using a default "fallback" Document Type Definition that closely resembles “HTML 4.01 Transitional”.

    Learn how to add a doctype to your document from our FAQ.

↑ Top

Validation Output: 444 Errors

  1. Error Line 1, Column 1: no document type declaration; implying "<!DOCTYPE HTML SYSTEM>"
    <HTML>

    The checked page did not contain a document type ("DOCTYPE") declaration. The Validator has tried to validate with a fallback DTD, but this is quite likely to be incorrect and will generate a large number of incorrect error messages. It is highly recommended that you insert the proper DOCTYPE declaration in your document -- instructions for doing this are given above -- and it is necessary to have this declaration before the page can be declared to be valid.

  2. Warning Line 16, Column 79: NET-enabling start-tag requires SHORTTAG YES
    …TdlIxUd1GPF7svV1vnqiRyTT2+wwVqCchc=" />

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  3. Error Line 17, Column 12: Attribute "TYPE" is not a valid attribute. Did you mean "type"?
    <meta type="" content="yhNmQc4oSLabUDyjq5zStNA2RkI"/>

    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.

  4. Warning Line 17, Column 52: NET-enabling start-tag requires SHORTTAG YES
    <meta type="" content="yhNmQc4oSLabUDyjq5zStNA2RkI"/>

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  5. Error Line 17, Column 52: document type does not allow element "META" here
    <meta type="" content="yhNmQc4oSLabUDyjq5zStNA2RkI"/>

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

  6. Error Line 19, Column 93: document type does not allow element "LINK" here
    …nen.de/icon.ico" type="image/x-icon">

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

  7. Error Line 20, Column 105: document type does not allow element "LINK" here
    …ss" rel="stylesheet" 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).

  8. Error Line 21, Column 39: document type does not allow element "META" here
    <meta http-equiv="expires" content="0">

    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 22, Column 52: document type does not allow element "META" here
    <meta http-equiv="cache-control" content="no-cache">

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

  11. Error Line 40, Column 7: end tag for element "HEAD" which is not open
    </head>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  12. Error Line 43, Column 30: document type does not allow element "BODY" here
    <body style="margin-top:0px;">

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

  13. Error Line 147, Column 22: Attribute "HEIGHT" is not a valid attribute. Did you mean "height"?
              <TR height="25">

    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.

  14. Error Line 149, Column 176: document type does not allow element "FORM" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME" start-tag
    …l(document.getElementById('words'))">

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

  15. Error Line 151, Column 58: document type does not allow element "TD" here
                  <TD width="550" style="white-space: nowrap"><span class="search">

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

  16. Error Line 174, Column 22: end tag for "SPAN" omitted, but its declaration does not permit this
                    </div></TD>

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

  17. Info Line 151, Column 58: start tag was here
                  <TD width="550" style="white-space: nowrap"><span class="search">
  18. Error Line 174, Column 22: end tag for "FORM" omitted, but its declaration does not permit this
                    </div></TD>

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

  19. Info Line 149, Column 12: start tag was here
                <form action="http://www.teddys-auktionen.de/Search" method="get" na
  20. Error Line 174, Column 22: end tag for "SPAN" omitted, but its declaration does not permit this
                    </div></TD>

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

  21. Info Line 148, Column 65: start tag was here
    …TD class="search" noWrap valign="middle" width="10"><span class="Stil2">
  22. Error Line 174, Column 22: end tag for "TABLE" omitted, but its declaration does not permit this
                    </div></TD>

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

  23. Info Line 145, Column 5: start tag was here
    					<TABLE cellspacing="0" cellpadding="0" width="100%" border="0">
  24. Error Line 174, Column 22: end tag for "TABLE" omitted, but its declaration does not permit this
                    </div></TD>

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

  25. Info Line 138: start tag was here
    ><TABLE cellSpacing=0 cellPadding=0  align = "center" width="100%" border=0>
  26. Error Line 177, Column 21: end tag for element "FORM" which is not open
                  </FORM></TD>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  27. Error Line 177, Column 26: end tag for element "TD" which is not open
                  </FORM></TD>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  28. Error Line 181, Column 9: end tag for element "TR" which is not open
        </TR>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  29. Error Line 182, Column 10: end tag for element "TBODY" which is not open
      </TBODY>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  30. Error Line 183, Column 8: end tag for element "TABLE" which is not open
    </TABLE>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  31. Error Line 185, Column 77: document type does not allow element "FORM" here
    …tionen.de/redirect.php" method = "post">

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

  32. Error Line 186, Column 4: document type does not allow element "TR" here
    <tr><td class = "theader2" height = "20" align="right">Hallo Gast!<a href="http:

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

  33. Error Line 189, Column 4: document type does not allow element "TR" here
    <tr><td width="100%" align="left">

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

  34. Error Line 201, Column 8: ID "CURRENT" already defined
    <li id=current><a href="http://www.teddys-auktionen.de/Suchanzeigen.html"><span>

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

  35. Info Line 195, Column 7: ID "CURRENT" first defined here
    <li id=current><a href="http://www.teddys-auktionen.de/"><span>Start</span></a><
  36. Error Line 211, Column 7: end tag for "TABLE" omitted, but its declaration does not permit this
    </form>

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

  37. Info Line 191: start tag was here
    i<table style="background: #E7E5E2" border="0" cellpadding="0" cellspacing="0" wi
  38. Error Line 212, Column 8: end tag for "TABLE" which is not finished
    </table>

    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 (ul, ol, dl) require list items (li, or dt, dd), and so on.

  39. Error Line 213, Column 83: required attribute "ALT" not specified
    …php" width="1" height="1" border="0">                                        

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

  40. Error Line 266, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  41. Error Line 269, Column 37: Attribute "HEIGHT" is not a valid attribute. Did you mean "height"?
          		  <table width="160" height="22" 

    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.

  42. Error Line 289, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  43. Error Line 297, Column 64: required attribute "ALT" not specified
    …ddys-auktionen.de//images/star6.gif"></TD><TD	BGCOLOR="GAINSBORO"><span class

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

  44. Error Line 303, Column 64: required attribute "ALT" not specified
    …ddys-auktionen.de//images/star6.gif"></TD><TD><span class=text_normal><A	HREF

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

  45. Error Line 309, Column 64: required attribute "ALT" not specified
    …ddys-auktionen.de//images/star6.gif"></TD><TD	BGCOLOR="GAINSBORO"><span class

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

  46. Error Line 311, Column 64: required attribute "ALT" not specified
    …ddys-auktionen.de//images/star6.gif"></TD><TD><span class=text_normal><A	HREF

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

  47. Error Line 325, Column 66: required attribute "ALT" not specified
    …ys-auktionen.de//images/checked.gif"></TD><TD	BGCOLOR="GAINSBORO"><span class

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

  48. Error Line 327, Column 64: required attribute "ALT" not specified
    …ddys-auktionen.de//images/star6.gif"></TD><TD><span class=text_normal><A	HREF

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

  49. Error Line 367, Column 75: required attribute "ALT" not specified
    …nen.de//images/smilie_oster_096.gif"></TD><TD><span class=text_normal><A	HREF

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

  50. Error Line 391, Column 64: required attribute "ALT" not specified
    …ddys-auktionen.de//images/star6.gif"></TD><TD><span class=text_normal><A	HREF

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

  51. Error Line 406, Column 87: document type does not allow element "TABLE" here
    …" cellspacing="0" class="table_norm">

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

  52. Error Line 408, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  53. Error Line 430, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  54. Error Line 432, Column 400: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></div><br><font style="color:#FF0000;fon

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

  55. Error Line 432, Column 565: required attribute "ALT" not specified
    …nen.de/images/buynow.gif" border="0"></td></tr><tr><td style="border-left:1px

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

  56. Error Line 432, Column 922: required attribute "ALT" not specified
    …ded/thumbs/th_902259.jpg" border="0"></a></td></tr></table></td>

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

  57. Error Line 435, Column 27: invalid comment declaration: found name character outside comment but inside comment declaration
    	<!--Ende Sonderangebote--->		

  58. Info Line 435, Column 1: comment declaration started here
    	<!--Ende Sonderangebote--->		
  59. Error Line 435, Column 28: character data is not allowed here
    	<!--Ende Sonderangebote--->		

    You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include:

    • putting text directly in the body of the document without wrapping it in a container element (such as a <p>aragraph</p>), or
    • forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes), or
    • using XHTML-style self-closing tags (such as <meta ... />) in HTML 4.01 or earlier. To fix, remove the extra slash ('/') character. For more information about the reasons for this, see Empty elements in SGML, HTML, XML, and XHTML.
  60. Error Line 437, Column 3: document type does not allow element "P" here
    <p>

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

  61. Error Line 438, Column 87: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …" cellspacing="0" class="table_norm">

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

  62. Error Line 440, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  63. Error Line 463, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  64. Error Line 465, Column 502: required attribute "ALT" not specified
    …nen.de/images/buynow.gif" border="0"></td></tr><tr><td style="border-left:1px

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

  65. Error Line 465, Column 871: required attribute "ALT" not specified
    …ded/thumbs/th_771781.jpg" border="0"></a></td></tr></table></td>

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

  66. Error Line 468, Column 7: document type does not allow element "P" here
    				<p>

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

  67. Error Line 469, Column 42: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
       <table cellpadding="0" cellspacing="1"><tr><td>

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

  68. Error Line 471, Column 38: Attribute "COLSPAN" is not a valid attribute. Did you mean "colspan"?
                  <TR height=21 colspan ="2">

    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.

  69. Error Line 484, Column 18: character ";" not allowed in attribute specification list
    " target="_blank";>Plueschmamas<br>Handarbeitsforum

  70. Error Line 486, Column 18: character ";" not allowed in attribute specification list
    " target="_blank";>

  71. Error Line 486, Column 18: document type does not allow element "A" here
    " target="_blank";>

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

  72. Error Line 487, Column 54: required attribute "ALT" not specified
    …banner.plueschpapa.de/button046.GIF"></a><br><br><!--<a href="http://www.tedd

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

  73. Warning Line 489, Column 113: cannot generate system identifier for general entity "user_id"
    …ID=c8c828d1414673a12d57a54d4010861e&user_id=5287c2f8fa6f8adec1d123126ad47883

    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.

  74. Error Line 489, Column 113: general entity "user_id" not defined and no default entity
    …ID=c8c828d1414673a12d57a54d4010861e&user_id=5287c2f8fa6f8adec1d123126ad47883

    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.

  75. Error Line 489, Column 120: reference to entity "user_id" for which no system identifier could be generated
    …28d1414673a12d57a54d4010861e&user_id=5287c2f8fa6f8adec1d123126ad47883

    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.

  76. Info Line 489, Column 111: entity was defined here
    …N_ID=c8c828d1414673a12d57a54d4010861e&user_id=5287c2f8fa6f8adec1d123126ad47…
  77. Error Line 490, Column 17: character ";" not allowed in attribute specification list
    "target="_blank";>

  78. Error Line 490, Column 17: document type does not allow element "A" here
    "target="_blank";>

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

  79. Error Line 491, Column 48: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/bas.GIF"></a><br><br>

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

  80. Error Line 492, Column 74: character ";" not allowed in attribute specification list
    …de/shops/seven-fifty"target="_blank";><img src="http://banner.plueschpapa.de/

  81. Error Line 492, Column 74: document type does not allow element "A" here
    …de/shops/seven-fifty"target="_blank";><img src="http://banner.plueschpapa.de/

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

  82. Error Line 492, Column 126: required attribute "ALT" not specified
    …://banner.plueschpapa.de/fifty1.GIF"></a><br><br>

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

  83. Error Line 493, Column 104: character ";" not allowed in attribute specification list
    …29724a43641e161.html"target="_blank";><img src="http://banner.plueschpapa.de/

  84. Error Line 493, Column 104: document type does not allow element "A" here
    …29724a43641e161.html"target="_blank";><img src="http://banner.plueschpapa.de/

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

  85. Error Line 493, Column 156: required attribute "ALT" not specified
    …://banner.plueschpapa.de/stone1.JPG"></a><br><br><a href="http://www.teddys-a

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

  86. Error Line 494, Column 17: character ";" not allowed in attribute specification list
    "target="_blank";>

  87. Error Line 494, Column 17: document type does not allow element "A" here
    "target="_blank";>

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

  88. Error Line 495, Column 51: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/lothar.JPG"></a><br><br>

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

  89. Error Line 496, Column 105: character ";" not allowed in attribute specification list
    …8e539be7277ab2.html" target="_blank";><img src="http://banner.plueschpapa.de/

  90. Error Line 496, Column 105: document type does not allow element "A" here
    …8e539be7277ab2.html" target="_blank";><img src="http://banner.plueschpapa.de/

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

  91. Error Line 496, Column 157: required attribute "ALT" not specified
    …://banner.plueschpapa.de/fossi1.JPG"></a><br><br>

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

  92. Error Line 497, Column 105: character ";" not allowed in attribute specification list
    …640b533450cc8c.html" target="_blank";>

  93. Error Line 497, Column 105: document type does not allow element "A" here
    …640b533450cc8c.html" target="_blank";>

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

  94. Error Line 498, Column 52: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/mijuok1.JPG"></a><br><br>

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

  95. Error Line 499, Column 105: character ";" not allowed in attribute specification list
    …e2a77f605d1671.html" target="_blank";>

  96. Error Line 499, Column 105: document type does not allow element "A" here
    …e2a77f605d1671.html" target="_blank";>

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

  97. Error Line 500, Column 56: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/bueropetra1.GIF"></a>

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

  98. Error Line 502, Column 70: character ";" not allowed in attribute specification list
    …nen.de/shops/stoebki"target="_blank";><img src="http://banner.plueschpapa.de/

  99. Error Line 502, Column 70: document type does not allow element "A" here
    …nen.de/shops/stoebki"target="_blank";><img src="http://banner.plueschpapa.de/

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

  100. Error Line 504, Column 117: reference to entity "user_id" for which no system identifier could be generated
    …28d1414673a12d57a54d4010861e&user_id=5ea5e1862fcc45ad9f34d2ef8c6ad481"target=

    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.

  101. Info Line 489, Column 111: entity was defined here
    …N_ID=c8c828d1414673a12d57a54d4010861e&user_id=5287c2f8fa6f8adec1d123126ad47…
  102. Error Line 504, Column 166: character ";" not allowed in attribute specification list
    …45ad9f34d2ef8c6ad481"target="_blank";><img src="http://banner.plueschpapa.de/

  103. Error Line 504, Column 166: document type does not allow element "A" here
    …45ad9f34d2ef8c6ad481"target="_blank";><img src="http://banner.plueschpapa.de/

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

  104. Error Line 504, Column 214: required attribute "ALT" not specified
    …http://banner.plueschpapa.de/bi.gif"></a><br><br>

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

  105. Error Line 506, Column 17: character ";" not allowed in attribute specification list
    "target="_blank";>

  106. Error Line 506, Column 17: document type does not allow element "A" here
    "target="_blank";>

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

  107. Error Line 507, Column 50: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/moni1.JPG"></a><br><br>

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

  108. Error Line 509, Column 17: character ";" not allowed in attribute specification list
    "target="_blank";>

  109. Error Line 509, Column 17: document type does not allow element "A" here
    "target="_blank";>

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

  110. Error Line 510, Column 54: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/weilheim1.JPG"></a>

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

  111. Error Line 513, Column 17: character ";" not allowed in attribute specification list
    "target="_blank";>

  112. Error Line 513, Column 17: document type does not allow element "A" here
    "target="_blank";>

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

  113. Error Line 514, Column 52: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/asearch.JPG"></a>

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

  114. Error Line 515, Column 202: document type does not allow element "DIV" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …idth:150px;background-color:#FFFFFF">

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

  115. Error Line 516, Column 140: document type does not allow element "A" here
    …_blank" class="wettercomsmall231614">Wetter fuer Bedburg</a>

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

  116. Error Line 518, Column 7: end tag for "A" omitted, but its declaration does not permit this
    </span></p>

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

  117. Info Line 483, Column 49: start tag was here
    …    <p align="left"><span class="c6"><a href="http://www.plueschpapa.de/dim/d
  118. Error Line 537, Column 7: "TBODY" not finished but containing element ended
    		</td>

  119. Error Line 537, Column 7: end tag for "TABLE" omitted, but its declaration does not permit this
    		</td>

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

  120. Info Line 438, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  121. Error Line 537, Column 7: "TBODY" not finished but containing element ended
    		</td>

  122. Error Line 537, Column 7: end tag for "TABLE" omitted, but its declaration does not permit this
    		</td>

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

  123. Info Line 406, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  124. Error Line 537, Column 7: "TBODY" not finished but containing element ended
    		</td>

  125. Error Line 537, Column 7: end tag for "TABLE" omitted, but its declaration does not permit this
    		</td>

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

  126. Info Line 264, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  127. Warning Line 569, Column 216: unclosed start-tag requires SHORTTAG YES
    …teddys-auktionen.de/images/cool.png"</img><br>

    The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.

  128. Error Line 569, Column 216: required attribute "ALT" not specified
    …teddys-auktionen.de/images/cool.png"</img><br>

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

  129. Error Line 569, Column 221: end tag for element "IMG" which is not open
    …s-auktionen.de/images/cool.png"</img><br>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  130. Error Line 572, Column 51: required attribute "ALT" not specified
    <img src="http://bilder.plueschpapa.de/859076.JPG"></img></a>

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

  131. Error Line 572, Column 57: end tag for element "IMG" which is not open
    <img src="http://bilder.plueschpapa.de/859076.JPG"></img></a>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  132. Error Line 573, Column 127: required attribute "ALT" not specified
    …://bilder.plueschpapa.de/901137.JPG"></img></a>

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

  133. Error Line 573, Column 133: end tag for element "IMG" which is not open
    …der.plueschpapa.de/901137.JPG"></img></a>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  134. Error Line 574, Column 148: document type does not allow element "P" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …hpapa.de/911344.JPG"></img></a>--><p><b><img src="http://bilder.plueschpapa.d

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

  135. Error Line 574, Column 200: required attribute "ALT" not specified
    …tp://bilder.plueschpapa.de/hot1.gif"></img>jetzt geht es endlich wieder los m

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

  136. Error Line 574, Column 206: end tag for element "IMG" which is not open
    …ilder.plueschpapa.de/hot1.gif"></img>jetzt geht es endlich wieder los mit der

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  137. Error Line 574, Column 312: required attribute "ALT" not specified
    …tp://bilder.plueschpapa.de/hot1.gif"></img><br>24 Tolle Angebote im 5 Minuten

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

  138. Error Line 574, Column 318: end tag for element "IMG" which is not open
    …ilder.plueschpapa.de/hot1.gif"></img><br>24 Tolle Angebote im 5 Minuten Takt<

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  139. Error Line 575, Column 69: character ";" not allowed in attribute specification list
    …uktionen.de/chatroom"target="_blank";><img src="http://banner.plueschpapa.de/

  140. Error Line 575, Column 121: required attribute "ALT" not specified
    …://banner.plueschpapa.de/power1.jpg"></a></img><br><!--<br><b>das Schnäppchen

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

  141. Error Line 575, Column 131: end tag for element "IMG" which is not open
    …plueschpapa.de/power1.jpg"></a></img><br><!--<br><b>das Schnäppchen der Woche

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  142. Error Line 575, Column 324: end tag for "B" omitted, but its declaration does not permit this
    …apa.de/409949.JPG"></a><br><b>--></p><center>

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

  143. Info Line 574, Column 148: start tag was here
    …hpapa.de/911344.JPG"></img></a>--><p><b><img src="http://bilder.plueschpapa.d
  144. Error Line 575, Column 332: document type does not allow element "CENTER" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …09949.JPG"></a><br><b>--></p><center>

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

  145. Error Line 577, Column 86: character ";" not allowed in attribute specification list
    …/tintenshop-weilheim"target="_blank";><img src="http://banner.plueschpapa.de/

  146. Error Line 577, Column 140: required attribute "ALT" not specified
    …/banner.plueschpapa.de/weilheim.JPG"></img></a><br><br><a href="http://www.pl

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

  147. Error Line 577, Column 146: end tag for element "IMG" which is not open
    …r.plueschpapa.de/weilheim.JPG"></img></a><br><br><a href="http://www.plueschp

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  148. Error Line 577, Column 286: required attribute "ALT" not specified
    …://banner.plueschpapa.de/werb1a.JPG"></a><p><br>

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

  149. Error Line 579, Column 118: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …dding="0" cellspacing="0" summary="">

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

  150. Error Line 589, Column 146: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …CCC" cellpadding="2" cellspacing="2">

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

  151. Error Line 591, Column 550: required attribute "ALT" not specified
    …ded/thumbs/th_117371.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  152. Error Line 591, Column 704: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 7.50 EUR</td><tr><td valign="bottom"><font style="col

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

  153. Info Line 591, Column 675: start tag was here
    …ize:12;">Tierurne Urne P..</font><br><small>Versand: 7.50 EUR</td><tr><td val
  154. Error Line 592, Column 549: required attribute "ALT" not specified
    …ded/thumbs/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  155. Error Line 592, Column 703: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 8.60 EUR</td><tr><td valign="bottom"><font style="col

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

  156. Info Line 592, Column 674: start tag was here
    …ize:12;">Held Leder Satt..</font><br><small>Versand: 8.60 EUR</td><tr><td val
  157. Error Line 593, Column 513: required attribute "ALT" not specified
    …ded/thumbs/th_876548.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  158. Error Line 593, Column 667: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.50 EUR</td><tr><td valign="bottom"><font style="col

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

  159. Info Line 593, Column 638: start tag was here
    …ize:12;">Wunderschöner G..</font><br><small>Versand: 4.50 EUR</td><tr><td val
  160. Error Line 597, Column 552: required attribute "ALT" not specified
    …ded/thumbs/th_534284.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  161. Error Line 597, Column 706: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 2.00 EUR</td><tr><td valign="bottom"><font style="col

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

  162. Info Line 597, Column 677: start tag was here
    …ize:12;">Deutschlands gr..</font><br><small>Versand: 2.00 EUR</td><tr><td val
  163. Error Line 598, Column 523: required attribute "ALT" not specified
    …ded/thumbs/th_911917.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  164. Error Line 598, Column 710: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></td><tr><td valign="bottom"><font style

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

  165. Error Line 599, Column 537: required attribute "ALT" not specified
    …ded/thumbs/th_661317.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  166. Error Line 599, Column 691: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 2.50 EUR</td><tr><td valign="bottom"><font style="col

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

  167. Info Line 599, Column 662: start tag was here
    …ize:12;">Seidenmaltuch A..</font><br><small>Versand: 2.50 EUR</td><tr><td val
  168. Error Line 602, Column 535: required attribute "ALT" not specified
    …ded/thumbs/th_913286.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  169. Error Line 602, Column 722: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></td><tr><td valign="bottom"><font style

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

  170. Error Line 603, Column 518: required attribute "ALT" not specified
    …ded/thumbs/th_738341.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  171. Error Line 603, Column 672: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.10 EUR</td><tr><td valign="bottom"><font style="col

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

  172. Info Line 603, Column 643: start tag was here
    …ize:12;">Teddy steh Bild..</font><br><small>Versand: 4.10 EUR</td><tr><td val
  173. Error Line 604, Column 544: required attribute "ALT" not specified
    …ded/thumbs/th_907219.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  174. Error Line 604, Column 698: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.90 EUR</td><tr><td valign="bottom"><font style="col

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

  175. Info Line 604, Column 669: start tag was here
    …ize:12;">HDMI Kabel Full..</font><br><small>Versand: 4.90 EUR</td><tr><td val
  176. Error Line 607, Column 541: required attribute "ALT" not specified
    …ded/thumbs/th_861055.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  177. Error Line 607, Column 728: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></td><tr><td valign="bottom"><font style

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

  178. Error Line 608, Column 529: required attribute "ALT" not specified
    …ded/thumbs/th_748412.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  179. Error Line 608, Column 683: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.10 EUR</td><tr><td valign="bottom"><font style="col

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

  180. Info Line 608, Column 654: start tag was here
    …ize:12;">Behälter mit De..</font><br><small>Versand: 4.10 EUR</td><tr><td val
  181. Error Line 609, Column 517: required attribute "ALT" not specified
    …ded/thumbs/th_530738.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  182. Error Line 609, Column 671: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 0.56 EUR</td><tr><td valign="bottom"><font style="col

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

  183. Info Line 609, Column 642: start tag was here
    …ize:12;">AK Eaton Queens..</font><br><small>Versand: 0.56 EUR</td><tr><td val
  184. Error Line 614, Column 135: required attribute "ALT" not specified
    ….de/images/bgauction.gif" border="0">=normale Auktion</small></td>

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

  185. Error Line 615, Column 131: required attribute "ALT" not specified
    …n.de/images/bgsofort.gif" border="0">=Festpreis Auktion</small></td>

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

  186. Error Line 616, Column 129: required attribute "ALT" not specified
    …nen.de/images/bgshop.gif" border="0">=Shop Auktion</small></td>

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

  187. Error Line 621, Column 35: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    <table width="100%" align="center">

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

  188. Error Line 624, Column 128: required attribute "ALT" not specified
    …s-auktionen.de/images/blitzkauf.png"></a><br><br>Versandkostenfreie Festpreis

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

  189. Error Line 624, Column 263: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></img>erkennbar<br><br>

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

  190. Error Line 624, Column 269: end tag for element "IMG" which is not open
    …en.de/images/versand_frei.png"></img>erkennbar<br><br>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  191. Error Line 626, Column 75: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    … border="0" cellpadding=0 cellspacing="0">

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

  192. Error Line 633, Column 108: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …="138" cellpadding=5 cellspacing="0">

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

  193. Error Line 680, Column 25: document type does not allow element "DIV" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    <div style="height:10px">  </div>

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

  194. Error Line 682, Column 108: character ";" not allowed in attribute specification list
    …7640b533450cc8c.html"target="_blank";><img src="http://banner.plueschpapa.de/

  195. Error Line 682, Column 178: document type does not allow element "P" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …apa.de/miju.gif" alt="miju46"></a><p>

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

  196. Error Line 686, Column 30: end tag for "B" omitted, but its declaration does not permit this
    																									</td>

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

  197. Info Line 568, Column 42: start tag was here
    …								                          <p><b>wir wünschen Allen einen gesunden und
  198. Error Line 689, Column 33: an attribute value must be a literal unless it contains only name characters
    											<div style=float:left;text-align:center;margin-left:7px>

    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.

  199. Error Line 692, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  200. Error Line 715, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  201. Error Line 717, Column 479: required attribute "ALT" not specified
    …en.de/images/shopart.gif" border="0"><br><img src ="http://www.teddys-auktion

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

  202. Error Line 717, Column 555: required attribute "ALT" not specified
    …nen.de/images/buynow.gif" border="0"></td></tr><tr><td style="border-left:1px

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

  203. Error Line 717, Column 911: required attribute "ALT" not specified
    …ded/thumbs/th_892908.jpg" border="0"></a></td></tr></table></td>

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

  204. Error Line 719, Column 22: "TBODY" not finished but containing element ended
            </table></div><div style=float:left;text-align:center;margin-left:7px>

  205. Error Line 719, Column 22: end tag for "TABLE" omitted, but its declaration does not permit this
            </table></div><div style=float:left;text-align:center;margin-left:7px>

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

  206. Info Line 690, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  207. Error Line 719, Column 44: an attribute value must be a literal unless it contains only name characters
            </table></div><div style=float:left;text-align:center;margin-left:7px>

    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.

  208. Error Line 722, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  209. Error Line 745, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  210. Error Line 747, Column 411: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></div><br><font style="color:#FF0000;fon

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

  211. Error Line 747, Column 576: required attribute "ALT" not specified
    …nen.de/images/buynow.gif" border="0"></td></tr><tr><td style="border-left:1px

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

  212. Error Line 747, Column 940: required attribute "ALT" not specified
    …ded/thumbs/th_875091.jpg" border="0"></a></td></tr></table></td>

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

  213. Error Line 749, Column 22: "TBODY" not finished but containing element ended
            </table></div><div style=float:left;text-align:center;margin-left:7px>

  214. Error Line 749, Column 22: end tag for "TABLE" omitted, but its declaration does not permit this
            </table></div><div style=float:left;text-align:center;margin-left:7px>

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

  215. Info Line 720, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  216. Error Line 749, Column 44: an attribute value must be a literal unless it contains only name characters
            </table></div><div style=float:left;text-align:center;margin-left:7px>

    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.

  217. Error Line 752, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  218. Error Line 775, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  219. Error Line 777, Column 497: required attribute "ALT" not specified
    …nen.de/images/buynow.gif" border="0"></td></tr><tr><td style="border-left:1px

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

  220. Error Line 777, Column 859: required attribute "ALT" not specified
    …ded/thumbs/th_911144.jpg" border="0"></a></td></tr></table></td>

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

  221. Error Line 779, Column 22: "TBODY" not finished but containing element ended
            </table></div><div style=float:left;text-align:center;margin-left:7px>

  222. Error Line 779, Column 22: end tag for "TABLE" omitted, but its declaration does not permit this
            </table></div><div style=float:left;text-align:center;margin-left:7px>

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

  223. Info Line 750, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  224. Error Line 779, Column 44: an attribute value must be a literal unless it contains only name characters
            </table></div><div style=float:left;text-align:center;margin-left:7px>

    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.

  225. Error Line 782, Column 85: document type does not allow element "TABLE" here
    …="0" cellspacing="0" cellpadding="0">

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

  226. Error Line 805, Column 48: document type does not allow element "TABLE" here
          <table class="c4" width="160"  border="0">

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

  227. Error Line 807, Column 440: required attribute "ALT" not specified
    …nen.de/images/buynow.gif" border="0"></td></tr><tr><td style="border-left:1px

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

  228. Error Line 807, Column 775: required attribute "ALT" not specified
    …ded/thumbs/th_867067.jpg" border="0"></a></td></tr></table></td>

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

  229. Error Line 809, Column 22: "TBODY" not finished but containing element ended
            </table></div>											</td></tr>

  230. Error Line 809, Column 22: end tag for "TABLE" omitted, but its declaration does not permit this
            </table></div>											</td></tr>

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

  231. Info Line 780, Column 6: start tag was here
          <table width="160" border="0" cellpadding="0" cellspacing="0" class="table
  232. Error Line 843, Column 414: invalid comment declaration: found name start character outside comment but inside comment declaration
    …rt-kaufen-Held-Leder-Satteltaschen--Topeka--fr-ClicksystemZZAuktionZZ911142ZZ

  233. Info Line 826, Column 16: comment declaration started here
                    <!--<tr><td align="center">
  234. Error Line 843, Column 415: character data is not allowed here
    …t-kaufen-Held-Leder-Satteltaschen--Topeka--fr-ClicksystemZZAuktionZZ911142ZZi

    You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include:

    • putting text directly in the body of the document without wrapping it in a container element (such as a <p>aragraph</p>), or
    • forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes), or
    • using XHTML-style self-closing tags (such as <meta ... />) in HTML 4.01 or earlier. To fix, remove the extra slash ('/') character. For more information about the reasons for this, see Empty elements in SGML, HTML, XML, and XHTML.
  235. Error Line 843, Column 547: required attribute "ALT" not specified
    …ded/thumbs/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  236. Error Line 843, Column 547: document type does not allow element "IMG" here; assuming missing "CAPTION" start-tag
    …ded/thumbs/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><f

  237. Error Line 843, Column 551: end tag for element "A" which is not open
    …thumbs/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><font 

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  238. Error Line 843, Column 556: end tag for "CAPTION" omitted, but its declaration does not permit this
    …s/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><font style

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

  239. Info Line 843, Column 464: start tag was here
    …cksystemZZAuktionZZ911142ZZidZZitem"><img src="http://www.teddys-auktionen.de
  240. Error Line 843, Column 556: "TABLE" not finished but containing element ended
    …s/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><font style

  241. Error Line 843, Column 556: end tag for "TABLE" omitted, but its declaration does not permit this
    …s/th_911142.jpg" border="0"></a></td><td valign="top" width="115"><font style

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

  242. Info Line 825, Column 11: start tag was here
    								<p><table width="100%" cellpadding="0" cellspacing="1">							
  243. Error Line 843, Column 701: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 8.60 EUR</td><tr><td valign="bottom"><font style="col

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

  244. Info Line 843, Column 672: start tag was here
    …ize:12;">Held Leder Satt..</font><br><small>Versand: 8.60 EUR</td><tr><td val
  245. Error Line 843, Column 980: end tag for element "DIV" which is not open
    …tem">mehr</a></td></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  246. Error Line 844, Column 511: required attribute "ALT" not specified
    …ded/thumbs/th_876548.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  247. Error Line 844, Column 665: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.50 EUR</td><tr><td valign="bottom"><font style="col

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

  248. Info Line 844, Column 636: start tag was here
    …ize:12;">Wunderschöner G..</font><br><small>Versand: 4.50 EUR</td><tr><td val
  249. Error Line 848, Column 550: required attribute "ALT" not specified
    …ded/thumbs/th_534284.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  250. Error Line 848, Column 704: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 2.00 EUR</td><tr><td valign="bottom"><font style="col

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

  251. Info Line 848, Column 675: start tag was here
    …ize:12;">Deutschlands gr..</font><br><small>Versand: 2.00 EUR</td><tr><td val
  252. Error Line 849, Column 521: required attribute "ALT" not specified
    …ded/thumbs/th_911917.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  253. Error Line 849, Column 708: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></td><tr><td valign="bottom"><font style

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

  254. Error Line 850, Column 535: required attribute "ALT" not specified
    …ded/thumbs/th_661317.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  255. Error Line 850, Column 689: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 2.50 EUR</td><tr><td valign="bottom"><font style="col

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

  256. Info Line 850, Column 660: start tag was here
    …ize:12;">Seidenmaltuch A..</font><br><small>Versand: 2.50 EUR</td><tr><td val
  257. Error Line 853, Column 533: required attribute "ALT" not specified
    …ded/thumbs/th_913286.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  258. Error Line 853, Column 720: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></td><tr><td valign="bottom"><font style

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

  259. Error Line 854, Column 516: required attribute "ALT" not specified
    …ded/thumbs/th_738341.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  260. Error Line 854, Column 670: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.10 EUR</td><tr><td valign="bottom"><font style="col

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

  261. Info Line 854, Column 641: start tag was here
    …ize:12;">Teddy steh Bild..</font><br><small>Versand: 4.10 EUR</td><tr><td val
  262. Error Line 855, Column 542: required attribute "ALT" not specified
    …ded/thumbs/th_907219.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  263. Error Line 855, Column 696: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.90 EUR</td><tr><td valign="bottom"><font style="col

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

  264. Info Line 855, Column 667: start tag was here
    …ize:12;">HDMI Kabel Full..</font><br><small>Versand: 4.90 EUR</td><tr><td val
  265. Error Line 858, Column 539: required attribute "ALT" not specified
    …ded/thumbs/th_861055.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  266. Error Line 858, Column 726: required attribute "ALT" not specified
    …uktionen.de/images/versand_frei.png"></td><tr><td valign="bottom"><font style

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

  267. Error Line 859, Column 527: required attribute "ALT" not specified
    …ded/thumbs/th_748412.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  268. Error Line 859, Column 681: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.10 EUR</td><tr><td valign="bottom"><font style="col

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

  269. Info Line 859, Column 652: start tag was here
    …ize:12;">Behälter mit De..</font><br><small>Versand: 4.10 EUR</td><tr><td val
  270. Error Line 860, Column 515: required attribute "ALT" not specified
    …ded/thumbs/th_530738.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  271. Error Line 860, Column 669: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 0.56 EUR</td><tr><td valign="bottom"><font style="col

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

  272. Info Line 860, Column 640: start tag was here
    …ize:12;">AK Eaton Queens..</font><br><small>Versand: 0.56 EUR</td><tr><td val
  273. Error Line 865, Column 135: required attribute "ALT" not specified
    ….de/images/bgauction.gif" border="0">=normale Auktion</small></td>

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

  274. Error Line 866, Column 131: required attribute "ALT" not specified
    …n.de/images/bgsofort.gif" border="0">=Festpreis Auktion</small></td>

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

  275. Error Line 867, Column 129: required attribute "ALT" not specified
    …nen.de/images/bgshop.gif" border="0">=Shop Auktion</small></td>

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

  276. Error Line 873, Column 12: end tag for element "TD" which is not open
    							</td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  277. Error Line 874, Column 15: end tag for element "TR" which is not open
              </tr>-->        <!--Ende Top angebote-->

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  278. Error Line 875, Column 14: document type does not allow element "TR" here
              <tr>

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

  279. Error Line 898, Column 23: invalid comment declaration: found character "<" outside comment but inside comment declaration
    										  										<script type="text/javascript" src="welcome/ticker_last10.

    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, and later open another.

  280. Info Line 879, Column 12: comment declaration started here
                <!--<table align="center" height="22" cellspacing="0" cellpadding="0
  281. Error Line 898, Column 93: end tag for element "SCRIPT" which is not open
    …="welcome/ticker_last10.js"></script>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  282. Error Line 904, Column 13: end tag for element "TD" which is not open
    								</td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  283. Error Line 905, Column 15: end tag for element "TR" which is not open
              </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  284. Error Line 906, Column 14: document type does not allow element "TR" here
              <tr>

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

  285. Error Line 926, Column 595: end tag for "TABLE" omitted, but its declaration does not permit this
    …ung,S" border="0"></a></td></tr></tr></table></div></td>

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

  286. Info Line 926, Column 70: start tag was here
    …nter"><div style="margin-left:100px"><table width ="217" align="left" height 
  287. Error Line 926, Column 595: end tag for "DIV" omitted, but its declaration does not permit this
    …ung,S" border="0"></a></td></tr></tr></table></div></td>

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

  288. Info Line 926, Column 39: start tag was here
                        <td align="center"><div style="margin-left:100px"><table wid
  289. Error Line 926, Column 609: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  290. Error Line 927, Column 555: end tag for "TABLE" omitted, but its declaration does not permit this
    …ktion" border="0"></a></td></tr></tr></table></div></td>

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

  291. Info Line 927, Column 70: start tag was here
    …nter"><div style="margin-right:50px"><table width ="217" align="left" height 
  292. Error Line 927, Column 555: end tag for "DIV" omitted, but its declaration does not permit this
    …ktion" border="0"></a></td></tr></tr></table></div></td>

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

  293. Info Line 927, Column 39: start tag was here
                        <td align="center"><div style="margin-right:50px"><table wid
  294. Error Line 927, Column 563: end tag for element "TABLE" which is not open
    …order="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  295. Error Line 927, Column 569: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  296. Error Line 927, Column 574: end tag for element "TD" which is not open
    …/a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  297. Error Line 928, Column 23: end tag for element "TR" which is not open
                      </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  298. Error Line 929, Column 22: document type does not allow element "TR" here
                      <tr>

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

  299. Error Line 930, Column 547: end tag for "TABLE" omitted, but its declaration does not permit this
    …ikate" border="0"></a></td></tr></tr></table></div></td>

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

  300. Info Line 930, Column 61: start tag was here
    …nter"><div style="margin-left:100px"><table width ="217" align="left" height 
  301. Error Line 930, Column 547: end tag for "DIV" omitted, but its declaration does not permit this
    …ikate" border="0"></a></td></tr></tr></table></div></td>

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

  302. Info Line 930, Column 30: start tag was here
    									  <td align="center"><div style="margin-left:100px"><table width ="217"
  303. Error Line 930, Column 555: end tag for element "TABLE" which is not open
    …order="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  304. Error Line 930, Column 561: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  305. Error Line 930, Column 566: end tag for element "TD" which is not open
    …/a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  306. Error Line 931, Column 39: document type does not allow element "TD" here
                        <td align="center"><div style="margin-right:50px"><table wid

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

  307. Error Line 931, Column 557: end tag for element "TR" which is not open
    …en!!!" border="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  308. Error Line 932, Column 23: end tag for element "TR" which is not open
                      </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  309. Error Line 933, Column 22: document type does not allow element "TR" here
                      <tr>

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

  310. Error Line 934, Column 586: end tag for "TABLE" omitted, but its declaration does not permit this
    …milie" border="0"></a></td></tr></tr></table></div></td>

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

  311. Info Line 934, Column 61: start tag was here
    …nter"><div style="margin-left:100px"><table width ="217" align="left" height 
  312. Error Line 934, Column 586: end tag for "DIV" omitted, but its declaration does not permit this
    …milie" border="0"></a></td></tr></tr></table></div></td>

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

  313. Info Line 934, Column 30: start tag was here
    									  <td align="center"><div style="margin-left:100px"><table width ="217"
  314. Error Line 934, Column 594: end tag for element "TABLE" which is not open
    …order="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  315. Error Line 934, Column 600: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  316. Error Line 934, Column 605: end tag for element "TD" which is not open
    …/a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  317. Error Line 935, Column 39: document type does not allow element "TD" here
                        <td align="center"><div style="margin-right:50px"><table wid

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

  318. Error Line 935, Column 595: end tag for element "TR" which is not open
    …um-Sc" border="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  319. Error Line 936, Column 23: end tag for element "TR" which is not open
                      </tr>		

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  320. Error Line 937, Column 13: document type does not allow element "TR" here
    									<tr>

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

  321. Error Line 938, Column 524: end tag for "TABLE" omitted, but its declaration does not permit this
    …liche" border="0"></a></td></tr></tr></table></div></td>

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

  322. Info Line 938, Column 70: start tag was here
    …nter"><div style="margin-left:100px"><table width ="217" align="left" height 
  323. Error Line 938, Column 524: end tag for "DIV" omitted, but its declaration does not permit this
    …liche" border="0"></a></td></tr></tr></table></div></td>

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

  324. Info Line 938, Column 39: start tag was here
                        <td align="center"><div style="margin-left:100px"><table wid
  325. Error Line 938, Column 532: end tag for element "TABLE" which is not open
    …order="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  326. Error Line 938, Column 538: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  327. Error Line 938, Column 543: end tag for element "TD" which is not open
    …/a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  328. Error Line 939, Column 39: document type does not allow element "TD" here
                        <td align="center"><div style="margin-right:50px"><table wid

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

  329. Error Line 939, Column 570: end tag for element "TR" which is not open
    …riles" border="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  330. Error Line 940, Column 23: end tag for element "TR" which is not open
                      </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  331. Error Line 941, Column 22: document type does not allow element "TR" here
                      <tr>

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

  332. Error Line 942, Column 517: end tag for "TABLE" omitted, but its declaration does not permit this
    …Nähen" border="0"></a></td></tr></tr></table></div></td>

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

  333. Info Line 942, Column 61: start tag was here
    …nter"><div style="margin-left:100px"><table width ="217" align="left" height 
  334. Error Line 942, Column 517: end tag for "DIV" omitted, but its declaration does not permit this
    …Nähen" border="0"></a></td></tr></tr></table></div></td>

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

  335. Info Line 942, Column 30: start tag was here
    									  <td align="center"><div style="margin-left:100px"><table width ="217"
  336. Error Line 942, Column 525: end tag for element "TABLE" which is not open
    …order="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  337. Error Line 942, Column 531: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  338. Error Line 942, Column 536: end tag for element "TD" which is not open
    …/a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  339. Error Line 943, Column 39: document type does not allow element "TD" here
                        <td align="center"><div style="margin-right:50px"><table wid

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

  340. Error Line 943, Column 596: end tag for element "TR" which is not open
    …erkze" border="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  341. Error Line 944, Column 23: end tag for element "TR" which is not open
                      </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  342. Error Line 945, Column 22: document type does not allow element "TR" here
                      <tr>

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

  343. Error Line 946, Column 503: end tag for "TABLE" omitted, but its declaration does not permit this
    …ektro" border="0"></a></td></tr></tr></table></div></td>

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

  344. Info Line 946, Column 61: start tag was here
    …nter"><div style="margin-left:100px"><table width ="217" align="left" height 
  345. Error Line 946, Column 503: end tag for "DIV" omitted, but its declaration does not permit this
    …ektro" border="0"></a></td></tr></tr></table></div></td>

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

  346. Info Line 946, Column 30: start tag was here
    									  <td align="center"><div style="margin-left:100px"><table width ="217"
  347. Error Line 946, Column 511: end tag for element "TABLE" which is not open
    …order="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  348. Error Line 946, Column 517: end tag for element "DIV" which is not open
    …"0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  349. Error Line 946, Column 522: end tag for element "TD" which is not open
    …/a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  350. Error Line 947, Column 39: document type does not allow element "TD" here
                        <td align="center"><div style="margin-right:50px"><table wid

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

  351. Error Line 947, Column 553: end tag for element "TR" which is not open
    …eiten" border="0"></a></td></tr></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  352. Error Line 948, Column 23: end tag for element "TR" which is not open
                      </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  353. Error Line 949, Column 13: document type does not allow element "TR" here
    									<tr><td colspan="2">&nbsp;</td></tr>	

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

  354. Error Line 950, Column 13: document type does not allow element "TR" here
    									<tr>

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

  355. Error Line 956, Column 15: end tag for "DIV" omitted, but its declaration does not permit this
    										</td>

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

  356. Info Line 951, Column 42: start tag was here
    									  <td align="center" colspan="2"><div style="margin-right:50px">
  357. Error Line 959, Column 25: invalid comment declaration: found character "<" outside comment but inside comment declaration
                        <!--<td class="creg3"><div align="center"><table width ="217

    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, and later open another.

  358. Info Line 958, Column 18: comment declaration started here
                      <!--<tr><td><a href="">Alle Shops anzeigen</a></td>
  359. Error Line 959, Column 536: required attribute "ALT" not specified
    …ded/thumbs/th_748412.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  360. Error Line 959, Column 690: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 4.10 EUR</td><tr><td valign="bottom"><font style="col

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

  361. Info Line 959, Column 661: start tag was here
    …ize:12;">Behälter mit De..</font><br><small>Versand: 4.10 EUR</td><tr><td val
  362. Error Line 959, Column 967: end tag for element "TD" which is not open
    …mehr</a></td></tr></table></div></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  363. Error Line 960, Column 38: document type does not allow element "TD" here
                        <td class="creg3"><div align="center" class="creg3"><table w

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

  364. Error Line 960, Column 536: required attribute "ALT" not specified
    …ded/thumbs/th_530738.jpg" border="0"></a></td><td valign="top" width="115"><f

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

  365. Error Line 960, Column 690: end tag for "SMALL" omitted, but its declaration does not permit this
    …ont><br><small>Versand: 0.56 EUR</td><tr><td valign="bottom"><font style="col

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

  366. Info Line 960, Column 661: start tag was here
    …ize:12;">AK Eaton Queens..</font><br><small>Versand: 0.56 EUR</td><tr><td val
  367. Error Line 961, Column 14: end tag for element "TR" which is not open
    									</tr>-->

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  368. Error Line 964, Column 24: end tag for element "TABLE" which is not open
                    </table><!--ENDE SHOPS-->				

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  369. Error Line 974, Column 86: end tag for "B" omitted, but its declaration does not permit this
    …b> Partnerlinkseite und Toplisten</a></b>

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

  370. Info Line 974, Column 48: start tag was here
    …tp://teddys-auktionen.de/links.html"><b> Partnerlinkseite und Toplisten</a><…
  371. Error Line 976, Column 162: required attribute "ALT" not specified
    …p://banner.plueschpapa.de/werb1.JPG"></img></a>

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

  372. Error Line 976, Column 168: end tag for element "IMG" which is not open
    …nner.plueschpapa.de/werb1.JPG"></img></a>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  373. Error Line 978, Column 147: required attribute "ALT" not specified
    …est.de/pics/spamfree.gif" border="0"></a>

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

  374. Error Line 988, Column 17: end tag for element "TD" which is not open
                </td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  375. Error Line 989, Column 15: end tag for element "TR" which is not open
              </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  376. Error Line 990, Column 14: document type does not allow element "TR" here
              <tr>

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

  377. Error Line 993, Column 16: end tag for element "TABLE" which is not open
            </table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  378. Error Line 994, Column 8: end tag for element "TD" which is not open
    			</td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  379. Error Line 995, Column 33: document type does not allow element "TD" here
        <td width="160" valign="top">

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

  380. Error Line 1034, Column 17: end tag for "TABLE" omitted, but its declaration does not permit this
                </td>

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

  381. Info Line 1021, Column 7: start tag was here
      					<TABLE style="border:0px" height=22 cellSpacing=0 cellPadding=0 width="10
  382. Error Line 1037, Column 13: end tag for element "TR" which is not open
            </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  383. Error Line 1039, Column 12: document type does not allow element "TR" here
            <tr> 

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

  384. Error Line 1071, Column 160: end tag for "B" omitted, but its declaration does not permit this
    …50,scrollbars=no')"><b>unser Team</a></td>

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

  385. Info Line 1071, Column 143: start tag was here
    …idth=500,height=350,scrollbars=no')"><b>unser Team</a></td>
  386. Error Line 1126, Column 166: end tag for "B" omitted, but its declaration does not permit this
    …ollbars=no')"><b>Live-Chatauktion</a></td>

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

  387. Info Line 1126, Column 143: start tag was here
    …idth=500,height=350,scrollbars=no')"><b>Live-Chatauktion</a></td>
  388. Error Line 1147, Column 14: end tag for element "TABLE" which is not open
          </table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  389. Warning Line 1150, Column 237: NET-enabling start-tag requires SHORTTAG YES
    …Bookmark and Share" style="border:0"/></a><script type="text/javascript" src=

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  390. Error Line 1153, Column 8: end tag for element "P" which is not open
        </p>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  391. Error Line 1196, Column 6: end tag for element "P" which is not open
    		</p>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  392. Error Line 1213, Column 13: end tag for "TABLE" omitted, but its declaration does not permit this
            </td>

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

  393. Info Line 1202, Column 4: start tag was here
      		<TABLE style="border:0px" height=22 cellSpacing=0 cellPadding=0 width="100%"
  394. Error Line 1215, Column 8: end tag for element "TD" which is not open
    			</td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  395. Error Line 1216, Column 9: end tag for element "TR" which is not open
        </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  396. Error Line 1217, Column 8: document type does not allow element "TR" here
        <tr> 

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

  397. Error Line 1222, Column 111: character ";" not allowed in attribute specification list
    …e2a77f605d1671.html" target="_blank";>

  398. Error Line 1223, Column 56: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/bueropetra1.GIF"></a>				

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

  399. Error Line 1229, Column 8: end tag for element "TABLE" which is not open
    </table>    </p>		

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  400. Error Line 1229, Column 16: end tag for element "P" which is not open
    </table>    </p>		

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  401. Error Line 1235, 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).

  402. Error Line 1262, Column 13: an attribute value must be a literal unless it contains only name characters
    <tr bgcolor=#f6f6f6 height="20"><td width="20" align="left" valign="middle" ><im

    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.

  403. Error Line 1262, Column 493: an attribute value must be a literal unless it contains only name characters
    …e" width="30"></td></tr><tr bgcolor=#ffffff height="20"><td width="20" align=

    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.

  404. Error Line 1262, Column 1103: required attribute "ALT" not specified
    …nen.de/images/me/me.gif" border= "0"></a></td></tr><tr bgcolor=#f6f6f6 height

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

  405. Error Line 1262, Column 1130: an attribute value must be a literal unless it contains only name characters
    …rder= "0"></a></td></tr><tr bgcolor=#f6f6f6 height="20"><td width="20" align=

    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.

  406. Error Line 1262, Column 1603: an attribute value must be a literal unless it contains only name characters
    …e" width="30"></td></tr><tr bgcolor=#ffffff height="20"><td width="20" align=

    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.

  407. Error Line 1262, Column 2213: required attribute "ALT" not specified
    …nen.de/images/me/me.gif" border= "0"></a></td></tr><tr bgcolor=#f6f6f6 height

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

  408. Error Line 1262, Column 2240: an attribute value must be a literal unless it contains only name characters
    …rder= "0"></a></td></tr><tr bgcolor=#f6f6f6 height="20"><td width="20" align=

    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.

  409. Error Line 1262, Column 2713: an attribute value must be a literal unless it contains only name characters
    …e" width="30"></td></tr><tr bgcolor=#ffffff height="20"><td width="20" align=

    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.

  410. Error Line 1262, Column 3184: an attribute value must be a literal unless it contains only name characters
    …e" width="30"></td></tr><tr bgcolor=#f6f6f6 height="20"><td width="20" align=

    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.

  411. Error Line 1262, Column 3660: an attribute value must be a literal unless it contains only name characters
    …e" width="30"></td></tr><tr bgcolor=#ffffff height="20"><td width="20" align=

    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.

  412. Error Line 1262, Column 4270: required attribute "ALT" not specified
    …nen.de/images/me/me.gif" border= "0"></a></td></tr><tr bgcolor=#f6f6f6 height

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

  413. Error Line 1262, Column 4297: an attribute value must be a literal unless it contains only name characters
    …rder= "0"></a></td></tr><tr bgcolor=#f6f6f6 height="20"><td width="20" align=

    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.

  414. Error Line 1262, Column 4911: required attribute "ALT" not specified
    …nen.de/images/me/me.gif" border= "0"></a><a href= "http://www.teddys-auktione

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

  415. Error Line 1262, Column 5047: required attribute "ALT" not specified
    …de/images/shop/shop.gif" border= "0"></a></td></tr><tr bgcolor=#ffffff height

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

  416. Error Line 1262, Column 5074: an attribute value must be a literal unless it contains only name characters
    …rder= "0"></a></td></tr><tr bgcolor=#ffffff height="20"><td width="20" align=

    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.

  417. Error Line 1262, Column 5683: required attribute "ALT" not specified
    …nen.de/images/me/me.gif" border= "0"></a></td></tr></table></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>.

  418. Error Line 1277, Column 5: end tag for "TABLE" omitted, but its declaration does not permit this
    </td></tr>  

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

  419. Info Line 1266, Column 2: start tag was here
      <table width="170" border="0" align="center" cellpadding="0" cellspacing="1" c
  420. Error Line 1283, Column 33: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
              <TD width="32%" align=middle 

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  421. Error Line 1284, Column 31: an attribute value must be a literal unless it contains only name characters
                          bgColor=#ffffff class="c4"><span class="text_normal">

    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.

  422. Error Line 1286, Column 105: end tag for "SPAN" omitted, but its declaration does not permit this
    …gories">Registrierte User</span></TD>

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

  423. Info Line 1286, Column 26: start tag was here
              <TD width="22%"><span class="categories"><span class="categories">Regi
  424. Error Line 1289, Column 33: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
              <TD width="32%" align=middle class="c4"><span class="text_normal">

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  425. Error Line 1291, Column 102: end tag for "SPAN" omitted, but its declaration does not permit this
    …ategories">Live Auktionen</span></TD>

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

  426. Info Line 1291, Column 26: start tag was here
              <TD width="22%"><span class="categories"><span class="categories">Live
  427. Error Line 1305, Column 138: document type does not allow element "UL" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …font color="#000000"><ul class="ul1"><li><div style="text-decoration:none;cur

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

  428. Error Line 1305, Column 357: end tag for "UL" omitted, but its declaration does not permit this
    …ion:none;">tycoonct</div></li></font><!--</TD>-->

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

  429. Info Line 1305, Column 122: start tag was here
    …</b></u></span><font color="#000000"><ul class="ul1"><li><div style="text-dec
  430. Error Line 1306, Column 26: end tag for element "UL" which is not open
              <!--<TD>--></ul></TD>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  431. Error Line 1315, Column 112: required attribute "ALT" not specified
    …4.jpg"  style="border:1px solid red"></img><br>AK Wildbad...								</a>

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

  432. Error Line 1315, Column 118: end tag for element "IMG" which is not open
    …  style="border:1px solid red"></img><br>AK Wildbad...								</a>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  433. Error Line 1321, Column 112: required attribute "ALT" not specified
    …0.jpg"  style="border:1px solid red"></img><br>AK Bonndor...								</a>

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

  434. Error Line 1321, Column 118: end tag for element "IMG" which is not open
    …  style="border:1px solid red"></img><br>AK Bonndor...								</a>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  435. Error Line 1327, Column 112: required attribute "ALT" not specified
    …5.jpg"  style="border:1px solid red"></img><br>Esso Autok...								</a>

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

  436. Error Line 1327, Column 118: end tag for element "IMG" which is not open
    …  style="border:1px solid red"></img><br>Esso Autok...								</a>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  437. Error Line 1345, Column 5: end tag for element "TD" which is not open
    </td></tr></table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  438. Error Line 1345, Column 10: end tag for element "TR" which is not open
    </td></tr></table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  439. Error Line 1345, Column 18: end tag for element "TABLE" which is not open
    </td></tr></table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  440. Error Line 1346, Column 10: end tag for element "P" which is not open
          </p>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  441. Error Line 1377, Column 27: invalid comment declaration: found name character outside comment but inside comment declaration
    	<!--Ende Sonderangebote--->				

  442. Info Line 1377, Column 1: comment declaration started here
    	<!--Ende Sonderangebote--->				
  443. Error Line 1401, Column 101: document type does not allow element "TABLE" here
    …" cellspacing="0" class="table_norm">

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

  444. Error Line 1407, Column 60: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …class="c4" width="11%" align="middle"><div align="left"><span class="categori

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  445. Error Line 1410, Column 60: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …class="c4" width="11%" align="middle"><div align="left"><span class="categori

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  446. Error Line 1413, Column 60: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …class="c4" width="11%" align="middle"> <div align="left"><span class="categor

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  447. Error Line 1416, Column 60: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …class="c4" width="11%" align="middle"><div align="left"><span class="categori

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  448. Error Line 1419, Column 48: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …       <td  class="c4" align="middle"><div align="left"><span class="categori

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  449. Error Line 1422, Column 48: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …       <td  class="c4" align="middle"><div align="left"><span class="categori

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  450. Error Line 1425, Column 48: value of attribute "ALIGN" cannot be "MIDDLE"; must be one of "LEFT", "CENTER", "RIGHT", "JUSTIFY", "CHAR"
    …       <td  class="c4" align="middle"><div align="left"><span class="categori

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  451. Error Line 1428, Column 129: document type does not allow element "TABLE" here
    …g="0" cellspacing="0" align="center">

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

  452. Error Line 1431, Column 128: required attribute "ALT" not specified
    …xe"><img src="banners/lister1ab.JPG"></a><br><br>

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

  453. Error Line 1432, Column 77: required attribute "ALT" not specified
    …="_blank"><img src="banners/faust1.JPG"></a><br><br>

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

  454. Error Line 1433, Column 102: required attribute "ALT" not specified
    …p://banner.plueschpapa.de/Media.JPG"></a><br><br>

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

  455. Warning Line 1441, Column 92: cannot generate system identifier for general entity "uid"
    …ukte/safetrade/safetrade.asp?sid=34&uid=0" target="_blank"><img src="http://w

    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.

  456. Error Line 1441, Column 92: general entity "uid" not defined and no default entity
    …ukte/safetrade/safetrade.asp?sid=34&uid=0" target="_blank"><img src="http://w

    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.

  457. Error Line 1441, Column 95: reference to entity "uid" for which no system identifier could be generated
    …e/safetrade/safetrade.asp?sid=34&uid=0" target="_blank"><img src="http://www.

    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.

  458. Info Line 1441, Column 90: entity was defined here
    …odukte/safetrade/safetrade.asp?sid=34&uid=0" target="_blank"><img src="http:/
  459. Error Line 1441, Column 191: required attribute "ALT" not specified
    …/images/icon_safetrade.gif" border=0></a>

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

  460. Error Line 1455, Column 14: end tag for element "UL" which is not open
    									</ul>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  461. Error Line 1457, Column 209: required attribute "ALT" not specified
    …s/Moneybookers_100x50.gif"  border=0></a>

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

  462. Error Line 1471, Column 103: character ";" not allowed in attribute specification list
    …tueberweisungde.html"target="_blank";><img src="http://bilder.plueschpapa.de/

  463. Error Line 1471, Column 103: document type does not allow element "A" here
    …tueberweisungde.html"target="_blank";><img src="http://bilder.plueschpapa.de/

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

  464. Error Line 1472, Column 13: end tag for "A" omitted, but its declaration does not permit this
    								</td>

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

  465. Info Line 1467, Column 8: start tag was here
    								<a href="#" onclick="javascript:window.open('https://www.paypal.com/de/c
  466. Error Line 1479, Column 8: end tag for element "P" which is not open
        </p>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  467. Error Line 1483, Column 9: document type does not allow element "P" here
    						<p>

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

  468. Error Line 1485, Column 59: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    						<table cellpadding ="0" cellspacing ="0" width="170">

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

  469. Error Line 1489, Column 11: end tag for "TABLE" omitted, but its declaration does not permit this
    						</td></tr></table>	

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

  470. Info Line 1485, Column 6: start tag was here
    						<table cellpadding ="0" cellspacing ="0" width="170">
  471. Error Line 1489, Column 11: end tag for "TABLE" omitted, but its declaration does not permit this
    						</td></tr></table>	

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

  472. Info Line 1403, Column 34: start tag was here
              <td class="text_normal"><table align = "center" width="100%" border="…
  473. Error Line 1490, Column 24: document type does not allow element "TABLE" here
    					<table width="170">

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

  474. Error Line 1493, Column 105: character ";" not allowed in attribute specification list
    …373b669197b606.html" target="_blank";>

  475. Error Line 1494, Column 48: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/ma1.JPG"></a><br><br>

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

  476. Error Line 1495, Column 105: character ";" not allowed in attribute specification list
    …370bbf46471178.html" target="_blank";>

  477. Error Line 1496, Column 50: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/schna.gif"></a><br><br>

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

  478. Error Line 1497, Column 105: character ";" not allowed in attribute specification list
    …c9952dd55297f6.html" target="_blank";>

  479. Error Line 1498, Column 50: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/fund1.JPG"></a><br><br>

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

  480. Error Line 1499, Column 109: reference to entity "user_id" for which no system identifier could be generated
    …52dc67b87996c8503e5f874f34e1&user_id=e2119e5c5b9460454dcfddd6b40f6296

    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.

  481. Info Line 489, Column 111: entity was defined here
    …N_ID=c8c828d1414673a12d57a54d4010861e&user_id=5287c2f8fa6f8adec1d123126ad47…
  482. Error Line 1500, Column 17: character ";" not allowed in attribute specification list
    "target="_blank";>

  483. Error Line 1501, Column 48: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/ham.JPG"></a><br><br>

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

  484. Error Line 1502, Column 49: required attribute "ALT" not specified
    <img src="http://banner.plueschpapa.de/werb.JPG"></img>

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

  485. Error Line 1502, Column 55: end tag for element "IMG" which is not open
    <img src="http://banner.plueschpapa.de/werb.JPG"></img>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  486. Error Line 1506, Column 42: document type does not allow element "SPAN" here
                  <span style='color:#000000'>

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

  487. Error Line 1507, Column 21: element "O:P" undefined. Did you mean "caption" or "blockquote"?
                    <o:p></o:p>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. 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 "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  488. Error Line 1508, Column 27: end tag for element "TD" which is not open
                  </span> </td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  489. Error Line 1509, Column 13: end tag for element "TR" which is not open
            </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  490. Error Line 1513, Column 25: end tag for element "TD" which is not open
          <p>&nbsp; </p></td>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  491. Error Line 1514, Column 7: end tag for element "TR" which is not open
      </tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  492. Error Line 1515, Column 8: end tag for element "TABLE" which is not open
    </table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  493. Error Line 1519, Column 5: end tag for element "TD" which is not open
    </td></tr></table></td></tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  494. Error Line 1519, Column 10: end tag for element "TR" which is not open
    </td></tr></table></td></tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  495. Error Line 1519, Column 18: end tag for element "TABLE" which is not open
    </td></tr></table></td></tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  496. Error Line 1519, Column 23: end tag for element "TD" which is not open
    </td></tr></table></td></tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  497. Error Line 1519, Column 28: end tag for element "TR" which is not open
    </td></tr></table></td></tr>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  498. Error Line 1520, Column 8: end tag for element "TABLE" which is not open
    </table>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  499. Error Line 1526, Column 4: end tag for element "P" which is not open
    </p>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  500. Error Line 1537, Column 34: end tag for "B" omitted, but its declaration does not permit this
      <font color="#000000"><b></font>

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

  501. Info Line 1537, Column 24: start tag was here
      <font color="#000000"><b></font>
  502. Error Line 1538, Column 4: end tag for element "P" which is not open
    </p>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  503. Error Line 1557, Column 26: Attribute "COLOR" is not a valid attribute. Did you mean "color"?
          <hr size="1" color="#374665" width="97%">

    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.

  504. Error Line 1577, Column 35: end tag for "FONT" omitted, but its declaration does not permit this
          Haftungsausschluss</span></a> an.<br><br>

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

  505. Info Line 1575, Column 19: start tag was here
     <a href="agb.php"><font size="1" color="#000000"><span class="categories">Nutzu
  506. Warning Line 1579, Column 434: NET-enabling start-tag requires SHORTTAG YES
    …er Wong hinzuf&uuml;gen" border="0" /></a>

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  507. Warning Line 1580, Column 206: NET-enabling start-tag requires SHORTTAG YES
    …chinenoptimierung mit Ranking-Hits" /></a>.

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  508. Warning Line 1585, Column 182: NET-enabling start-tag requires SHORTTAG YES
    …" height="23" alt="XING" border="0" /></a>.<!--<a href="http://www.auktionsbl

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  509. Warning Line 1589, Column 178: NET-enabling start-tag requires SHORTTAG YES
    …- Webmaster Portal" style="border:0"/></a><!--.<a href="http://www.deutschese

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  510. Error Line 1591, Column 168: invalid comment declaration: found name start character outside comment but inside comment declaration
    …uktionshaus Topliste  vom Auktions--Agent.de" border="0" /></a>.<a href="http

  511. Info Line 1591: comment declaration started here
    n<!--<a href="http://www.auktions-agent.de/toplist/"><img src="http://www.auktion
  512. Error Line 1591, Column 194: end tag for element "A" which is not open
    …Auktions--Agent.de" border="0" /></a>.<a href="http://www.private-krankenvers

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  513. Error Line 1600, Column 114: required attribute "ALT" not specified
    …p://www.quit-submit.net/submit8.gif"></a>

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

  514. Warning Line 1626, Column 190: cannot generate system identifier for general entity "title"
    …encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title

    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.

  515. Error Line 1626, Column 190: general entity "title" not defined and no default entity
    …encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title

    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.

  516. Error Line 1626, Column 195: reference to entity "title" for which no system identifier could be generated
    …eURIComponent(location.href)+'&title='+encodeURIComponent(document.title));re

    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.

  517. Info Line 1626, Column 188: entity was defined here
    …'+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.tit
  518. Warning Line 1631, Column 151: cannot generate system identifier for general entity "display"
    …hardware.at/index.php?mod=bookmarks&display=submit');return false;" title="Bo

    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.

  519. Error Line 1631, Column 151: general entity "display" not defined and no default entity
    …hardware.at/index.php?mod=bookmarks&display=submit');return false;" title="Bo

    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.

  520. Error Line 1631, Column 158: reference to entity "display" for which no system identifier could be generated
    …e.at/index.php?mod=bookmarks&display=submit');return false;" title="Bookmark 

    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.

  521. Info Line 1631, Column 149: entity was defined here
    …w.hardware.at/index.php?mod=bookmarks&display=submit');return false;" title="
  522. Warning Line 1680, Column 35: cannot generate system identifier for general entity "cat"
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.

    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.

  523. Error Line 1680, Column 35: general entity "cat" not defined and no default entity
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.

    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.

  524. Error Line 1680, Column 38: reference to entity "cat" for which no system identifier could be generated
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.

    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.

  525. Info Line 1680, Column 33: entity was defined here
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.
  526. Warning Line 1680, Column 56: cannot generate system identifier for general entity "pixel"
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.

    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.

  527. Error Line 1680, Column 56: general entity "pixel" not defined and no default entity
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.

    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.

  528. Error Line 1680, Column 61: reference to entity "pixel" for which no system identifier could be generated
    …in/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.

    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.

  529. Info Line 1680, Column 54: entity was defined here
    cgi-bin/adserv/ad.cgi?action=view&cat=promo-mailtausch&pixel=468x60"></iframe>.
  530. Error Line 1683, Column 63: document type does not allow element "A" here
    …chine.net/de/site.php?details=90717"><img src="http://www.beammachine.net/de/

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

  531. Warning Line 1684, Column 58: NET-enabling start-tag requires SHORTTAG YES
    …BeamMachine.net --><script src=http://www.pucco.de/banner-0673KG429ZF643LZDnv

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  532. Error Line 1684, Column 58: required attribute "TYPE" not specified
    …BeamMachine.net --><script src=http://www.pucco.de/banner-0673KG429ZF643LZDnv

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

  533. Error Line 1684, Column 118: end tag for element "SCRIPT" which is not open
    …73KG429ZF643LZDnv600148.js> </script>.<a href="http://www.bestsubmit.de" targ

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  534. Error Line 1684, Column 170: document type does not allow element "A" here
    …//www.bestsubmit.de" target="_blank"><img src="http://www.bestsubmit.de/img/s

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

  535. Error Line 1684, Column 343: document type does not allow element "A" here
    …="http://www.webkatapult.de/aff/0/2">

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

  536. Warning Line 1685, Column 196: NET-enabling start-tag requires SHORTTAG YES
    …pult.de/images/banner/banner_01.png"/></a>.<a href="http://www.onlinepresse.i

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  537. Error Line 1685, Column 362: document type does not allow element "A" here
    …Pressedienst mit Pressemitteilungen"><img src="http://www.onlinepresse.info/s

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

  538. Warning Line 1685, Column 513: NET-enabling start-tag requires SHORTTAG YES
    …t="Autoren Siegel OnlinePresse.info"/></a><!--.<a href="http://www.seitwert.d

    The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

  539. Error Line 1689, Column 10: end tag for element "DIV" which is not open
        </div>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  540. Error Line 1692, Column 11: end tag for "CENTER" omitted, but its declaration does not permit this
          </td>

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

  541. Info Line 1691, Column 1: start tag was here
     <center>
  542. Error Line 1696, Column 104: end tag for "CENTER" omitted, but its declaration does not permit this
    …" height="0" width="0"></iframe></td></tr></table></div>

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

  543. Info Line 1536, Column 2: start tag was here
      <center>
  544. Error Line 1696, Column 123: end tag for element "DIV" which is not open
    …"0"></iframe></td></tr></table></div>

    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.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

↑ Top

© 2009 by Link-Commander
PageRank™ und Google™ sind geschützte Marken der Google Inc., Mountain View CA, USA.
Das PageRank Verfahren unterliegt dem US Patent 6,285,999.
Websitestatistiken