Help me with code

Tell us what’s happening:

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

Your code so far


<h1>CatPhotoApp</h1>
<main>
<p>Kitty ipsum text</p>
<p> Purr jum eat the grass rip the couch scratched sumbathe, shed everywhere rip the couch sleep in the sink fluffy fur canip 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/85.0.4183.83 Safari/537.36.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

@Quantinh Hi there,
You should include this text in the second P element:
Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched

<main>
<p>First p element</p>
<p>Second P element</p>
</main>
1 Like