Introduction to HTML5 Elements (help please!)

Tell us what’s happening:
" The main element should have two paragraph elements as children."
I do not know how to do this. I just do not understand. I tried everything. Why does it not work?

Your code so far


<h2>CatPhotoApp</h2>

<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>

<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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 YaBrowser/19.3.1.887 Yowser/2.5 Safari/537.36.

Inside your main tag, you only have one p element.

<main> opens the tag, and </main> closes it.

Between those two, you need to have two different p elements - each one with an opening <p> and a closing </p>.

It should look something like this:

<main>
    <p>First element content</p>
    <p>Second element content</p>
</main>

Thank you! You really helped me!!