Correct the code please here

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>

<main>

<p> kitty ipsum text </p>
--->

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

</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

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

You need 2 p elements with Kitty Ipsum text.

It means two paragraph tags, <p></p> this makes one paragraph and there are no <p1> tags you have to create another para element like <p></p> with the mentioned text between <p> and </p>

And also remove that arrow symbol
Structure,

<h2></h2>
<main>
    <p></p>
    <p></p>
</main>
1 Like