I need help with this challenge thank you

Tell us what’s happening:
its cufusing why does it say The main element should have two paragraph elements as children.

Your code so far
You should have 2 p elements with Kitty Ipsum text.

Passed
Each of your p elements should have a closing tag.

Your p element should contain the first few words of the provided additional kitty ipsum text.

Passed
Your code should have one main element.

The main element should have two paragraph elements as children.

Passed
The opening main tag should come before the first paragraph tag.

Passed
The closing main tag should come after the second closing paragraph tag.


<h2>CatPhotoApp</h2>
<main>
<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.Kitty ipsum shed everywhere</p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Hello @israelv4146

Welcome to FCC.
You haven’t added the second p tag with the provided text in the challenge instruction. There should be a second p tag like:

<p> </p>

The tag should contain the text:

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
1 Like

Right here you only have one paragraph element. You need two.

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