Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:Preformatted text
Describe your issue in detail here.
my code wont pass

See more cat photos in our gallary

Your code so far

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

<!-- User Editable Region -->

    <h2>Cat Photos</h2>
    <P> See more cat photos in our gallary </P>

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

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

Link to the challenge:

im assuming its because of the spaces in between your p tags

Hi Micheal.

It seems as though you have done 2 errors:

  1. The p tag needs to be lower case. So <p> not <P>. Same with the closing tag. </p> not </P>
  2. You have misspelled the word gallery, you have spelt it gallary. And you have also omitted a full stop at the end of the sentence. Simply copy paste the text required to pass the test in between the tags.