Подтвердить что ты не робот

Является ли элемент 'ul не может быть вложен в элемент' ol? (я получаю эту ошибку от xhtml validator) help pls

<ol style="padding-top:0;">
<li><a href="#" onclick="location.href='http://www.24hourfitness.com/membership/offers/specials.html?cm_mmc=Silverfox-_-SEM-_-Google-_-Branded?'; return false;">24 Hour Fitness</a></li>

    <!-- open nested list -->
    <ul>
    <li>This website would be ideal to use as a reference. The information provided lists references and is also very detailed. You feel confident in what you read in this website as being factual and helpful.</li>
    <li>source code – body section</li>

        <!-- open nested list -->
        <ol type="a">
        <li>Don't display unfriendly errors directly to the user.</li>
        <li>Used SSL/HTTPS for login and any pages where sensitive data is entered (like credit card info).</li>
        <li>Written <a href="#" onclick="location.href='http://www.w3.org/TR/xhtml1/'; return false;" target="_blank">XHTML</a>/HTML and CSS according to the <a href="#" onclick="location.href='http://www.w3.org/'; return false;">W3C specifications</a> and make sure they validate. The goal here is to avoid browser quirks modes and as a bonus make it much easier to work with non-standard browsers like screen readers and mobile devices.</li>
        <li>Have some system for people to contact you with suggestions and criticism.</li>
        </ol> 
        <!-- closed nested list -->

    <li>The website’s goal is to encourage membership at 24 Hour Fitness gyms.  This is very easy to determine by both the 24 Hour Fitness banner and the "Membership" banner. The website than provides a number of membership options.
    You can locate your local gyms without any problems at all.</li>
    <li>The website is quite easy to navigate around. The main reason is because of the six drop down menus at the bottom of the 24 Hour Fitness banner.
    These drop down menus remain visible and constant for the majority of the web pages in the site.
    For instance, when you click on "Shop" you are sent to a related website so the banner and the drop down menus change.</li>
        </ul>
        <!-- closed nested list -->
</ol>
4b9b3361

Ответ 1

Внутренняя часть <ul> должна находиться внутри li, поэтому либо создайте новый li, либо снимите первую.

Ответ 2

Валидатор верен: единственными правовыми элементами в элементе <ul> или <ol> являются <li> элементы. Если вы хотите вставить списки, поместите их внутри элементов <li>.