Introduction to HTML5 Elements i need help

i don’t understand what it’s saying:

i need to add The main element should have two paragraph elements as children.

Your code so far what is this


<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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/

could you please help me pls

When an element is a child of an other it means that the child element is wrapped inside the other element

For example your main tag has one child p, but it should have two

im new so i dont understand

hello? @ILM hello are you here

This is a forum, not an instant messaging chat…

What is that you don’t understand?

There is a main element in your code. Inside it there is a p element. That p element is child of the main element.

You also have an other p element, outside of main, that p element is not child of main