I don't know what to do next I have bn stuck here,,, please I need solutions

Tell us what’s happening:

Your code so far


<h1> Hello World </h1>
<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="http//"bit.ly./fcc- relaxing cat.jpg " alt="relaxing cat.">

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 7.0; Infinix NOTE 3 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.101 Mobile Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Your img tag should be inside the main before the p tags

<main>
<img>
<p><\p>
<p><\p>
</main>

You also need to check your quotation marks

1 Like

Okay boss thanks lemme check it out

1 Like

! I keep getting the same results

1 Like

look at the colors after src, the blue part is the value
look carefully, you may notice something extra around there

https://bit.ly/fcc-relaxing-cat

This is the link you have been asked to use. Does it look similar to the one you used.

The syntax of the <img> tag is wrong. You shouldn’t include any double quotes in it when the src attribute itself is surrounded with double quotes. Thus it should be like:

<img src="http//bit.ly./fcc- relaxing cat.jpg" alt="relaxing cat.">

And I don’t assume those spaces are supposed to be there as well.

Exactly that’s the link,

Thanks lemme work with that and see hopefully Ill get a better result

I still can’t spot the error, I feel there’s no error

Just put an extra space there right before alt and you are good.

you have the wrong url - copy&pasting is usually the best way to put in an url without making typos

note that the required url doesn’t end with a file extension (.jpg)

I’m still getting stronger after giving the space

1 Like

this is the required url

yours is different

@ilenia was right. Your url is incorrect.

Okay I should remove the extension, let me try it out

you also have a space in place of an other character

Exactly thanks it was the space. ,finally spot the error

1 Like

Thanks I finally spot the error really appreciate

1 Like