Learn HTML by Building a Cat Photo App - Step 12

Please tell me why does "

Click here to view more cat photos

" fail and how to correct the error
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</a></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 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0

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

Link to the challenge:

Maybe you are missing the period at the end? (It should be outside the link but inside the paragraph)

Thank you. But I have already tried it. Doesn’t help.
Here is the hint

Hint

The link’s href value should be https://freecatphotoapp.com. You have either omitted the href value or have a typo.

Try restarting the step. Also try to force the browser to refresh (ctrl f5)
And if needed, try in a different browser.

Done more than once. Didn’t help

Try incognito mode on chrome or Firefox

Thank you so much. Private mode worked. :+1:

1 Like

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