Error Messages on Lists Within Lists

<ul> Interests
<li> singing</li>
<li> art</li>
<li> animals</li>
<li> psychology</li>
</ul>
</body>
    <ul> Favorite Names
        <li>Cole</li>
        <li>Elliott</li>
        <li>Grey</li>
        <li>Ember</li>
        <li>Cameron</li>
        <li>Ariella</li>
    </ul>
<ol> Favorite Sports Teams
    <li>Atlanta Braves</li>
    <li>Carolina Panthers</li>
    <li>NC State</li>
</ol>

It keeps saying I need to have at least one unordered lists inside my unordered list of profile sections- but I’ve tried every combination I can think of.

List
    Interests
  • singing
  • art
  • animals
  • psychology
    Favorite Names
  • Cole
  • Elliott
  • Grey
  • Ember
  • Cameron
  • Ariella
    Favorite Sports Teams
  1. Atlanta Braves
  2. Carolina Panthers
  3. NC State

I dont know man with out seeing the entire code its hard to see your problem but i can see that there is a closing body tag above more list this is obviously a problem because all the list should be inside the body.

Yeah man move that closing body tag homie i used your code and passed the lesson so its correct you just nned that body tag fixed

I moved the body tag and it still didn’t work. I’ll send the whole code. Its just not working at all.

Sierra Cubero

I am a seventeen year old girl, and I'm from the small town of Brevard, North Carolina.

    Interests
  • singing
  • art
  • animals
  • psychology
    Favorite Names
  • Cole
  • Elliott
  • Grey
  • Ember
  • Cameron
  • Ariella
    Favorite Sports Teams
  1. Atlanta Braves
  2. Carolina Panthers
  3. NC State

*I changed the photograph code because it was a picture of me but everything else is the same.

Hakim Corner

I'm a ninja I love too do marial arts and kill people. Noone will hurt me or my family.

  1. Interest
    • Programming
    • Martial arts
  2. Jobs
    • Police
    • Car sells
  • Places
    1. Miami
    2. Chicago
    • People
      • Mom
      • Dad
      • Brothers

create 2 unordered list, then create a ordered list inside on of those lists like I did for places and people

but show us with tags

How to post code in this forum.

Yeeeaahhhh you sold my problem

I need to have at least one unordered lists inside my unordered list of profile sections

this is completely ■■■■■■■■> I am wasting time with this crap

  • Interests
    • Hacking
    • Sleeping
    • Driving
    1. Government
      1. Jerks
      2. liars
      3. thieves
    • Travels
      1. LA
      2. Greece
      3. Paris
      </li>
      
    1. jon
      • Andersen
      • Tyler
      • Crop Rotation 14th Century

    Hey can you help me out I have the same problem.

    Im 20 a male and from DC.

    • Football
    • Cooking
    • Coding
    • DC/Maryland
    • No favorite Quotes
    1. More Interests
          <ol>
              <li>Playing Cod</li>
              <li>Playing Madden</li>
              <li>Playing Battlefield</li>
              <li>Playing 2k</li>
          </ol>
      </li>
      
    • Favorite Guns
      • M8
      • MOW
      • locus
    </body>
    
        <ol>
            <li>food</li>
            <li>more food</li>
        </ol> 
        
        <ul>
            <li>super food</li>
            <li>food</li>
        </ul>  
        
        <ul>
            <li>Favorite guns
                <ul>
                    <li>M8</li>
                    <li>MOW</li>
                    <li>locus</li>
                </ul>
            </li>
        </ul>     
        
        
    </body>
    

    So I tried something different but it didn’t work Help!

    <ul>
    <li>Favorite Quotes
    
         <ol>
            <li> The quieter you become the more you hear!</li>
            <li>The greatest pleasure in life is doing what people say you cannot do!</li>
            <li>Education is not the learning of facts, but the training of the mind to think.</li>
            <li> Everybody is a genius. But if you judge a fish by it's ability to climb a tree it will live it's whole life beliving that it is stupid.</li>
        </ol>
    </li>
     <! -- second list -->
    <ul>
        <li> least liked quotes</li>
        <li> you owe me a yellow</li>
    </ul>
    1 Like

    You sir are my hero. I have tried an excess of 50 combinations before I came on here to find out I wasn’t the only person struggling…

    what you need to do is create a list WITHIN a list. you’re creating two seperate lists. one unordered and one ordered. you’re code should look something like htis

    you can see asthetically how the list will look different. it will actually be a list within a list instead of two seperate lists. hopefully this helps.