Build a Cat Photo App - Step 17

Tell us what’s happening:

can anyone please tell me what am i doing wrong getting error
Your anchor (a) element should link to https://freecatphotoapp.com. You have either omitted the URL or have a typo.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
      <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

<!-- User Editable Region -->

      <a href="http://freecatphotoapp.com">
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
      </a>

<!-- User Editable Region -->

    </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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 17
https://www.freecodecamp.org/learn/full-stack-developer/workshop-cat-photo-app/step-17

Hi there and welcome to the forum!

You need https

i appreciate your help Ray
Thanks

1 Like

Hi,
I am getting this error:
You should have an

img

element with a

src

value of

https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg

. You may have accidentally deleted it.

The code is

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
      <p>
        See more 
        <a target="_blank" href="https://freecatphotoapp.com">
          <img src="image-link.jpg" alt="A photo of a cat.">
        </a>
        cat photos in our gallery.
      </p>
      <a target="_blank" href="https://freecatphotoapp.com">
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
      </a>
    </main>
  </body>
</html>

hi @adi.rv93 , we are unable to help you in someone else’s topic, please create your own topic

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.