Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening

I have a problem with the error that happens and I don’t know how to concert that.

Your code so far

<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>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- 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:

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome @yancauebernz
It seems that your anchor element doesn’t have a closing tag. A closing tag contains a ‘/’.
Hope that works.

Thank you so much, I was doing that a lot of time and It was just that.