Did I do it right this time?

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
https://bit.ly/fcc-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 (X11; CrOS armv7l 12739.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

hey buddy! you have to add your link inside the image tag

<img src="your link">

hope it helps!

I have no idea why I am having a hard time doing this. I would need a video step by step on how to do it! The one they provide is ok but it is not step to step

This is an image element:

<img>

This is an src attribute with its value set to an image URL:

src="https://www.your-image-source.com/your-image.jpg"

This is an image element with the src attribute from above on it:

<img src="https://www.your-image-source.com/your-image.jpg">

  1. <img>

  2. <img src="">

  3. <img src="https://www.your-image-source.com/your-image.jpg"> (remember to use the correct URL from the challenge).