Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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

iPad - iPadOS16.7.8

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

Link to the challenge:

1 Like

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

1 Like

Hi @Lisa17

The link’s text should be cat photos. You have either omitted the text or have a typo.

Just a few fixes are required.

  1. Please remove the space before the word See
  1. remove the text link to from before word cat in the anchor element. Also remove any spaces before the word cat in that element.
  1. remove the dot after the word photos

Happy coding

2 Likes