Learn HTML by Building a Cat Photo App - Step 5

** Your p element’s text should be See more cat photos in our gallery. You have either omitted the text or have a typo.:**
I tried everything to do it but it does not work correctly I cannot pass this step, please help me.

Your code so far

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

<!-- User Editable Region -->

    <h2>Cat Photos</h2>
    </p>See more cat photos in our gallery.<h2>

<!-- 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/108.0.0.0 Safari/537.36 OPR/94.0.0.0

Challenge: Learn HTML by Building a Cat Photo App - Step 3

Link to the challenge:

The text it self is correct but you got mixed up between the opening tag and closing tag

p element include opening and closing tag
<p> is opening tag
</p> is closing tag

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