Build a Cat Photo App - Step 3

Tell us what’s happening:

I don’t understand this P element please put me through

Your code so far


<!-- User Editable Region -->

<cat photos>Everyone loves cute cats online!<h1/>

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

Challenge Information:

Build a Cat Photo App - Step 3

Hi there and welcome to our community!

This is the starting code for this step:

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    
  </body>
</html>

You should not make any changes to this existing code, but instead, add a paragraph (p) element with the text Everyone loves cute cats online!.

First, hit the Reset button to restore the starting code.
Then, on the line below the h2 element, add a p element. The syntax is the same as the h2 element, with an opening tag, text content and a closing tag. Instead of putting ‘h2’ inside the angle brackets, you put ‘p’, to denote a paragraph element.