Learn HTML by Building a Cat Photo App - Step 10

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

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://freecatphotoapp.com"></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>

Hello everyone, I read a lot of same question about step 10, and I tried on many ways to solve this problem. Can anyone help me and explain me where its potentional problem. What I did wrong. Can be problem with some code earlier ? On which way work this “Click to see more pic”… Do I need to do soemting, and do I need to write some code around sentence “click to see…” ? regards

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

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

Link to the challenge:

<a href=" https://freecatphotoapp.com"></a> is a typo supposed to be
<a href="https://freecatphotoapp.com"></a>

Nothing again. Do I missed soemtinng after paragrah ? thank you for helping me

you mean it didn’t work?

I tried with copy and i check my text. Maybe i dont know how to explain you. I copied my code on first post. No, I didnt pass

olaaaaa i passed. i think problem its on some space bar or can be problem with " or ’

1 Like

and i passed it but if I want to clik and see more photos, it doesn work i cant clikc

Yes you are not supposed to be able to click anything to be moved to the site. Because you have not wrapped anything in your anchor element.

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