How do I add a cat picture?

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

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>


<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>
<img src="https://www.freecatphotoapp.com/your-image.jpg">

  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.210 Safari/537.36

Challenge: Add Images to Your Website

Link to the challenge:

Hi @Ayoub12 !

Welcome to the forum!

Your image tag needs to be inside the main tags.

<h2>CatPhotoApp</h2>
<main>

IMAGE GOES HERE
  <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>

Also, your src url is incorrect here

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

Also you need an alt attribute.
Finally, don’t forget to give your img element an alt attribute with applicable text.

Thank you ! but I tried can you explain what is SCR and alt attribute ?

Your question has been answered in the topic you created.