Error found while checking this document as HTML 4.01 Transitional!

Result: 1 Error
:
: shift_jis
: HTML 4.01 Transitional
Root Element: HTML
Options

Help on the options is available.

↑ Top

Validation Output: 1 Error

  1. Error Line 87, Column 5: end tag for "UL" which is not finished
    </ul>

    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