Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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

<!-- User Editable Region -->

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

<!-- 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/118.0.0.0 Safari/537.36

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

Link to the challenge:

You don’t actually want to create an element named elementName. This is just the hint trying to explain to you how to create an element. You replace elementName with the actual name of the element, which is p in this case. So get rid of those elementName tags.

You actually created the opening p tag correctly. Now you just need to put a closing p tag after the text.