Errors found while checking this document as XHTML 1.0 Transitional!

Result: 6 Errors
:
: windows-1252
: XHTML 1.0 Transitional
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

↑ Top

Validation Output: 6 Errors

  1. Error Line 189, Column 28: end tag for "tr" omitted, but OMITTAG NO was specified
                        </table>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  2. Info Line 180, Column 22: start tag was here
    	                    <tr>
  3. Error Line 204, Column 118: document type does not allow element "form" here
    …aluzimbra.pt/content/default.asp?japti=0&amp;idCat=CATALOGO" name="changepage">

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

  4. Error Line 205, Column 8: document type does not allow element "tr" here; assuming missing "table" start-tag
        <tr>

  5. Error Line 206, Column 429: end tag for "input" omitted, but OMITTAG NO was specified
    … class="frmInput" style="width:30px;"><input name="submit" type="image" title=…

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  6. Info Line 206, Column 352: start tag was here
    …t color="#333333">Ir para pág. </font><input name="pg" value="" maxlength="3" …
  7. Error Line 208, Column 7: end tag for "table" omitted, but OMITTAG NO was specified
    </form>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  8. Info Line 205, Column 5: start tag was here
        <tr>
  9. Error Line 209, Column 8: end tag for "table" which is not finished
    </table></td>

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

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

↑ Top