Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here. Ca someone please help me and tell me whats wrong with the href tag?

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

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

You need to close your opening a tag before you put the text ‘cat photos’. Give your opening a tag a ‘href’ attribute with the value of the webpage ypu want to link it to.
Ex:

<p>This is a paragraph with a <a href="">LINK</a> inside</p>

Thank you so much for your answer, still can’t get it right though. I`m probably not a coding person=)

What the…
Not a coding person???
Even the best programmers get stuck at some point. You probably mean your not a coding robot=).
This link might help you understand how linking works a bit more, but if you still have any issue getting your code to pass then by all means show me your code.

To post your updated code paste it in the ```` marks that appear when clicking the </> button:

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