Cat Photo issue

Im copy-paste link to the cat photo, but still have problem.
“Your image should have a src attribute that points to the kitten image.”

Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>

<img src=“https://www.freecatphotoapp.com/your-image.jpg” >

<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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36

Challenge: Add Images to Your Website

Link to the challenge:

  1. Use the exact url mentioned on the challenge task to the src attribute of your img element.

  2. Don’t forget to give your img element an alt attribute with a value assigned to it.

Im use exactly same url from task. and im trying with alt, but programm still have same problem

Can I see your current code?

Here is how to write code in the forum.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor ( </> ) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

This is my text code.

<h2>CatPhotoApp</h2>
<main>

<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="A business cat wearing a necktie.">

  <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>

This is screenshot

The url you should be using is

<img src="https://www.bit.ly/fcc-relaxing-cat" alt="a cat">

Heh, and where i should saw it?:smiley:
image

Aaaaah, i see
image

<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="A business cat wearing a necktie.">

1

You need to use the url that you see in the image which doesn’t match with the one that you are using. The url that you are using currently as the value of your src attribute is shown as an example on the challenge, Now, your task here is to set your src attribute point to a different url like the one mentioned on the challenge task (which you can see on the image).

To find the actual challenge you need to scroll down just before the test

this is where you will find the url

also not gonna lie i made the same mistake a few seconds ago when i was trying to solve your problem :laughing:

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