------Make sure each of your p elements has a closing tag.
------ Your p element should contain the first few words of the provided additional kitty ipsum text .
------ You need 2 p elements with Kitty Ipsum text.
-----Your code should have one main element.
------The main element should have two paragraph elements as children.
------The opening main tag should come before the first paragraph tag.
--------The closing main` tag should come after the second closing paragraph tag
And i did this, but i am yet to pass the challenge. please i need help, i have been stuck here for three days now. Thanks
<h2>CatPhotoApp</h2>
<header>
<p>Kitty ipsum dolor sit amet, shed </p>
<p> kitty ipsum text:Purr jump eat the grass </p>
</header>
Your code should have one main element.
The main element should have two paragraph elements as children.
The opening main tag should come before the first paragraph tag.
The closing main tag should come after the second closing paragraph tag
You seem to have ignored these conditions and used a different HTML tag. Nowhere there does it say use a header tag
Why did you try the body tag? Nowhere does it say use a body tag. Again, to quote this, it is literally telling you which tag to use:
Your code should have one main element.
The main element should have two paragraph elements as children.
The opening main tag should come before the first paragraph tag.
The closing main tag should come after the second closing paragraph tag
Well, that’s the answer. If you are supposed to use the main tag, which tag do you think you are supposed to use? It isn’t saying “use the header tag” or “use the body tag”, it’s saying “use the main tag”