Errors found while checking this document as HTML 4.01 Transitional!

Result: 2 Errors, 1 warning(s)
:
: utf-8
: HTML 4.01 Transitional
Root Element: HTML

W3Cdevs logo

Interested in understanding what new technologies are coming out of W3C? Follow @w3cdevs on Mastodon to keep track of what the future looks like!

Donate and help us build better tools for a better web.

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, or other things affecting the output below. 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 Byte-Order Mark found in UTF-8 File.

    The Unicode Byte-Order Mark (BOM) in UTF-8 encoded files is known to cause problems for some text editors and older browsers. You may want to consider avoiding its use until it is better supported.

↑ Top

Validation Output: 2 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>").

↑ Top