Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:

Don’t understand what it is telling me to do when it says Your p element should have an opening tag

Your code so far

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

<!-- User Editable Region -->

    <h2>Cat Photos</h2>
   <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/125.0.0.0 Safari/537.36 OPR/111.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 3

This is an h1 element. It has an opening tag and a closing tag.

While this is an h2 tag. It has its own opening and its own closing tag.

So when creating almost any html element, you must follow the same pattern. A p element will look similar to:

<p>a paragraph element</p>
2 Likes