Learn HTML by Building a Cat Photo App - Step 12

Hi everyone,
I am struggling with the gref bit, please help

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more <a>cat photos </a> in our gallery.</p>
      <a href="https://freecatphotoapp.com">cat photos</a>link to cat pictures</a>
      <img src="https://cdn.freecod
ecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your mobile information:

SM-G991B - Android 13 - Android SDK 33

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

Link to the challenge:

Hello and welcome to the forum!

You have an extra space in your link, that why you don’t pass.

You have to follow the syntax exactly from the first lesson on. For the computer something like an extra space is visible, gets compiled and can lead to bugs.

It’s really that bad, an extra or missing comma can crash an app. Luckily modern code editors will flash red when they detect this mistake, now you know why.

Welcome to FCC Forum!

Turn Image and Text Into Links FCC Article

This is a link to an article that explains and provides examples on how to turn text and images into links.