Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:

need help checking whats wrong with my code cuz I already id what the instruction is giving me but it keept saying I’m wrong

Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>

<!-- User Editable Region -->

    <h2>Cat Photos</h2>
    </p>Everyone loves cute cats online!

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 3

Hi there and welcome to our community!

Your syntax is not quite correct. To create a p element, you use the same syntax as the h2 element above it (i.e. <element>content</element>).
You should have an opening p tag, the text content and a closing p tag.