Stuck again I need help!

Tell us what’s happening:

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>
<main>
<p>Purr jump eat the grass rip the couch scrathed sunbathe.</p>
<main>
  <p> Shed everywhere rip the couch sleep in the sink fur catnip scrathed.</p>
 <!-- 
-->

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS armv7l 12739.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Did I make to many changes on this?

Yes and you are not closing the main element. You also have a comment which shouldn’t be there.

  1. Make a p element and give the text the challenge tell you to.

  2. Make a main element and put both p elements inside it.

<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>
<main> <!-- remove this -->
<p>Purr jump eat the grass rip the couch scrathed sunbathe.</p>
<main> <!-- Close this tag -->
  <p> Shed everywhere rip the couch sleep in the sink fur catnip scrathed.</p> <!-- remove this p element -->
 <!-- <!-- remove this start comment -->
-->   <!-- remove this end comment -->

is this right

<h2>CatPhotoApp</h2>

<main>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere

<main> <!--remove this-->

<p> Purr jump eat the grass rip the couch scrathed sunbathe.</p

<main>

<p> Shed everywhere rip the couch sleep in the sink fur catnip</p

<!--

<!--

-->

No, it is not and I’m sure the test is telling you it isn’t. Reset the code and try again, slowly.

idk why I keep messing up

Post your latest code.

Click the </> button in the toolbar above the text box and paste in the code where it tells you to.

Edit: @jnw2718 By the way, did you see the challenges have accompanying videos for more help? Click Get Help > Watch a video

I would suggest you always try without watching the solution first but if you need help the video can guide you and you can pause it before the solution is shown to give it a try first.

hold on give me a moment I will do that