New to Coding Please HELP!

Tell us what’s happening:
I’m stuck on how to complete this problem. I have succesfully completed all the tasks but I am receiving a message saying that the main element should have two paragraph elements as children but I’m not sure what that means. I am completely new to coding any advice would help.

Your code so far


<h2>CatPhotoApp</h2>
<section>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
</section>
<main>

 <p> Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched</p>
 </main>

Hey BSharper,

A children element in HTML is an element that is nested in a another element.
For exemple if you have this code:

<div class="myClass">
   <p>First Paragraph</p>
   <p>Second Pargraph</p>
</div>

Here both of the texts in p tags are children elements of the div element.

So in your case you should have an another <p> element nested inside your <main> element :slight_smile:

Happy coding,
Cheers

Thank you so much!! Your explanation helped tons.