Nested and elements

Tell us what’s happening:
Describe your issue in detail here.
I’m having a hard time understanding this step. Need a little more explaining on nesting, child elements, what does

    mean?

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1> <ul> 
     <li> Child Element 1 </li> <li>Child Element 2</li> 
     </ul>  <main> 
            <h2>Cat Photos</h2> 
     <!-- TODO: Add link to cat photos --!
    <p>Click here to view more cat photos.</p>
    </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15

Challenge: Step 6

Link to the challenge:

Hello!

“Nesting” just means putting your content between an opening and a closing tag. In the challenge that are the two “main” tags. That’s the place your list will go.

“Parent” and “Child” are terms you will keep hearing in development.
In this challenge the ul (unorders list) is the parent
the li (list items) are the children.

Alternative names are “container” for parent and “items” for children.
Think of it like putting items into a container.

Hope it helps

1 Like

Thank you so much, I’m extremely new to this, I have zero experience so I appreciate your help.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.