Learn HTML by Building a Cat Photo App - Step 11

Tell us what’s happening:
My code isn’t working is said that "Your anchor element’s text should be link to cat pictures

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more cat photos.</p>
      <a href="https://freecatphotos.com">click here to go to 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/107.0.0.0 Safari/537.36 Edg/107.0.1418.35

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

Link to the challenge:

this is your anchor element.
Its text is set to
click here to go to cat photos

This is wrong according to the hint.
Change it to match the text the hint is telling you to use.

I tried to change following the hint but it still doesn’t work

link to cat picture.

that’s a good try but I believe there is no period in the link text? (you added one)

Tell us what’s happening:
I can’t understand what I’m doing wrong. I’m very new in all of this and I’m trying on this step different times. Can someone explain me where I do wrong?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more cat photos.</p>
   <a href="https://freecatphotos.com"> link to cat picture.</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/107.0.0.0 Safari/537.36 Edg/107.0.1418.35

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

Link to the challenge:

This text should exactly match to link to cat pictures
Hint Remove the extra space and period and add s

thanks so much! Now i get it!

1 Like

hi there, please do not open a duplicate topic for the same challenge in future.
I have merged the duplicates.

sorry thanks! Really new here

1 Like

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