Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:

Step 3
The p element is used to create a paragraph of text on websites. Create a p element below your h2 element and give it the following text:

See more cat photos in our gallery.
I don’t know what should I do?

Your code so far

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

<!-- User Editable Region -->

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

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 3

To create a p element, create a p opening tag and a p closing tag. The write the text in between the tags. Here is an example to illustrate this:
<p>text in the middle</p>