Pointing the src code to the cat image

Tell us what’s happening:
Describe your issue in detail here.
Hello all, I was having trouble with the following code. Every time that I run test its telling me that I need to point the src code to the cat image. Does anyone have knowledge of how to do this. Or can point me in the right direction? Thank you.

BreMoore21

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<img src="https://cdn.freecodecamp.org/cirriculum/cat-photo-app/alt+relaxing-cat.jpg" alt="relaxing cat".

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15

Challenge: Add Images to Your Website

Link to the challenge:

Double check the spelling of the image URL. You’ve got a few mistakes in there. Probably best just to copy/past the URL from the instructions if you are able.

This part of the instruction you need to check.

Now set the src attribute so that it points to the url https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg

Also looks like there’s no closing ‘>’ on the image tag and instead a period ‘.’ which is probably just a typo

Changing the “.” to a “>” and changing the src to contain exactly what @edper wrote above should fix your issue.

Okay thank you. Yeah I’ve started doing that more now cause I was definitely making some mistakes lol

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