How do I wrap paragraphs

Tell us what’s happening:
Describe your issue in detail here.I need advice on wrapping paragraphs

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.</p>
<p>purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur ctnip scratched.

Your browser information:

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

Challenge: Introduction to HTML5 Elements

Link to the challenge:

You must have a closing </p> tag.

Hi @hmdt426 and welcome to the forum!!!

There are some errors:

  1. You forgot to close the p element right here (I put two asterisks):

    <p>purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur ctnip scratched. **
    
  2. Remove the slash (/) from main here:

    <h2>CatPhotoApp</h2>
    <*/*main>
    
  3. Close the main tag after the last p element.

:wave:

1 Like

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