Learn HTML by Building a Cat Photo App - Step 12

Can someone help me in this please? 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., I don’t understand what is that mean.

This is my code

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p> see more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>
      <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 mobile information:

VOG-TL00 - Android 12 - Android SDK 31

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

Link to the challenge:

HI! Welcome to our forum.
You have a couple of issues to look at. You need to consider the casing, punctuation and spacing.

  1. Casing
    This should start with a capital S.
  1. Punctuation.
    This text should end with a full stop.
See more cat photos in our gallery
  1. Spacing
    The only spacing you should have is: After this text

and after the closing anchor tag.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.