Learn HTML by Building a Cat Photo App - Step 8

Tell us what’s happening:

I can see the picture of the cat but code does not pass, I have been on this for ages, can someone guide me on what I am doing wrong?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>

<!-- User Editable Region -->

      <img src="http:cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">

<!-- 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/127.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 8

Hi and welcome to the forum!

The word http: is missing the two slashes after it. If you copy the url exactly as provided the test will hopefully pass.

1 Like

hello,
Thankyou for you suggestion but I put the slashes in and still no go.

1 Like

Looks like the word https is also missing an s

1 Like

thankyou, looks like I really need to work on my attention to detail

it is easier to copy and paste the strings given to you or the URLs in this case than to type them out. That will help a lot.

1 Like