Learn HTML by Building a Cat Photo App - Step 11

Tell us what’s happening:
I am on step 11. I have my anchors, but it’s not being accepted. I’m not understanding the comment of what I am missing. Below is the line I entered:

<a href="https://freecatphotoapp.com">cat photos</a>


Comment for incorrect line:
Your anchor (a) element’s text should be link to cat pictures. Make sure to put the link text between the anchor (a) element’s opening tag and closing tag.


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

You accidentally copied an old answer. The anchor text is not what the instructions are asking for.

Tell us what’s happening:
I changed it to cat pictures with the same result. Unable to get past Step 11

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 cat photos.</p>
    <a href="https://freecatphotoapp.com">cat photos</a>
      <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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53

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

Link to the challenge:

Please post actual code instead of pictures.

Your link text must exactly, perfectly, completely match the entire phrase you were told to use.

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