Provided ipsum text bla vla bla,,,,,

**Tell us what’s happening:**what are they asking for when they say p must contain some elements of provided ipsum text

Your code so far


<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.Purr jump </p>

<p>Purr jump everywhere 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.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36.

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

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

The p element is the thing surrounded by the p tags, i.e., everything surrounded by and included the <p> and the </p>. This is what you currently have for the original p tag:

<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.Purr jump </p>

Here is the original:

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

You’ve add some stuff there - you weren’t supposed to.

For your second p tag, this is what you currently have:

<p>Purr jump everywhere rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>

And this is the text you are supposed to put in the second p tag:

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

You’ve removed some words.

The structure of what you’ve written is fine, but you’ve changed the texts and that is causing the tests to fail.

Thank you sir for briefly analyzing my mistake and providing your generous reply.