Tell us what’s happening:
I have problem understanding arc pointing to the attribute
Your code so far
<h2>CatPhotoApp</h2>
<main>
<img src="https ://bit.ly//fcc-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 (Linux; Android 7.0; Infinix X572) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.93 Mobile Safari/537.36.
the value you give to the src attribute needs to match exactly the url you are given in the challenge description, plus the space present in the middle of it in your code makes the link invalid and the image is not visible
The URL needs to be exactly the same as what is asked for. You cannot keep arbitrarily changing it, you have to put in exactly what is asked for otherwise there is no way the tests can pass.