Codecademy:嵌套列表

Codecademy: Nested Lists

我正在 Codecademy 上关于 html 中嵌套列表的课程。

我的代码如下:

<ul>
<li>Work? I am currently unemployed.
  Here's a list of things that I have
  done though:

  <ol>
    <li>Farm Hand</li>
    <li>Excersize Rider</li>
    <li>Curator's Assistant</li>
    <li>Teaching Assistant</li>
    <li>Telephone Operator</li>
  </ol>

</li>
<li>Education? I have dropped out of the
  following institutions:

  <ol>
    <li>
      Highschool (I did complete all
      courses and receive credit)
    </li>
    <li>
      College (I withdrew for
      medical reasons)
    </li>
  </ol>

</li>
<li>Interests? Here are a select few:

  <ol>
    <li>Running</li>
    <li>Martial arts</li>
    <li>Equestrian activities</li>
    <li>Video games</li>
  </ol>

</li>
<li>Favorite Quotes

  <ol>
    <li>"This was a triumph"</li>
    <li>
      "It's not safe to go alone, 
      here, take this!"
    </li>
    <li>
      "Our princess is in
      another castle!"
    </li>
  </ol>

</li>
</ul>

但是,当我尝试提交此代码时,课程抛出以下错误:

Oops, try again. Make sure you have at least one unordered list inside your unordered list of profile sections!

我做错了什么?

根据错误,

Oops, try again. Make sure you have at least one unordered list inside your unordered list of profile sections!

您需要一个 unordered list inside your unordered list of profile sections. Currently, all of your internal lists are ordered lists (<ol>)。尝试将其中一个变成 <ul>


例如,这应该与您的错误描述相匹配:

<ul>
<li>Work? I am currently unemployed.
  Here's a list of things that I have
  done though:

  <ul>  <!--(Unordered List!)-->
    <li>Farm Hand</li>
    <li>Excersize Rider</li>
    <li>Curator's Assistant</li>
    <li>Teaching Assistant</li>
    <li>Telephone Operator</li>
  </ul>

</li>
<li>Education? I have dropped out of the
  following institutions:

  <ol>
    <li>
      Highschool (I did complete all
      courses and receive credit)
    </li>
    <li>
      College (I withdrew for
      medical reasons)
    </li>
  </ol>

</li>
<li>Interests? Here are a select few:

  <ol>
    <li>Running</li>
    <li>Martial arts</li>
    <li>Equestrian activities</li>
    <li>Video games</li>
  </ol>

</li>
<li>Favorite Quotes

  <ol>
    <li>"This was a triumph"</li>
    <li>
      "It's not safe to go alone, 
      here, take this!"
    </li>
    <li>
      "Our princess is in
      another castle!"
    </li>
  </ol>

</li>
</ul>