What am I doing wrong? The code seems to work?

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a href="https://freecatphotoapp.com">cat photos.</p>
    <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_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36

Challenge: Step 12

Link to the challenge:

Hi @riekpuik welcome to the forum.
You have an opening tag for your a, but not a closing one. Remember that the text in between the tags will be your link text, like:

 <a href="">I am the link text</a>

Hope this helps :sparkles:

I changed it to

But it still says its wrong.

Hey @riekpuik always best to copy your code, rather than a screenshot; an image is always worts to work with.

Anyhow check you link text: you have an extra space: cat photos </a>
The test suite looks for an exact match.

hey…the casing of the cat photos is incorrect it should be Cat Photos

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