Learn HTML by Building a Cat Photo App - Step 12

I don’t get what im doing wrong in this step.

I get this error message: After nesting the anchor (a ) element, the only p element content visible in the browser should be See more cat photos in our gallery. Double check the text, spacing, or punctuation of both the p and nested anchor element.

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p> See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery. </p>
    

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36

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

Link to the challenge:

This step is very picky about spaces. In general you should not add extra spaces where they don’t need to be. The original HTML did not have a space between the opening p tag and the word “See”. You added a space there which is throwing off the tests. Likewise for the space you added between the word “gallery.” and the closing p tag.

In general, do not add extra spaces anywhere you aren’t asked to. You, and the tests, will be much happier :slightly_smiling_face: