Errors found while checking this document as HTML 4.01 Transitional!

Result: 3 Errors
:
: utf-8
: HTML 4.01 Transitional
Root Element: HTML
Options

Help on the options is available.

↑ Top

Validation Output: 3 Errors

  1. Error Line 46, Column 77: end tag for "A" omitted, but its declaration does not permit this
    <td><a href="Avvento3.htm"><img src="TraNatAvv3a.gif" alt="" border="0"></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.

  2. Info Line 46, Column 5: start tag was here
    <td><a href="Avvento3.htm"><img src="TraNatAvv3a.gif" alt="" border="0"></td>
  3. Error Line 98, Column 102: document type does not allow element "NOSCRIPT" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    …counter/counter.js"></script><noscript><div class="statcounter"><a title="web …

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

  4. Error Line 105, Column 8: required attribute "TYPE" not specified
    <script>

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

↑ Top