Help Me Please Becuase this is difficult

Tell us what’s happening: It says my alt can’t be empty

Your code so far
“alt=A business cat wearing a necktie.”


<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>
<img src="https://bit.ly/fcc-relaxing-cat"
<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" "alt=A business cat wearing a necktie.">


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

Hi there,
First of all, you’ve added multiple images to the code. The first one is unfinished and it doesn’t have a closing angle. Take a look here:

<img src="https://bit.ly/fcc-relaxing-cat"

it should be like this:

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

this lesson asks you to add an image to the main part of the code. This is the instruction

Within the existing main element, insert an img element before the existing p elements.

remember you should not use an alternative URL address. only the provided URL address in this lesson is acceptable which is:

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

and don’t forget the alt attribute.

2 Likes

A little advice, don’t panic quickly by not passing the tests, just take it easy, if a test didn’t pass, check the syntax first.

3 Likes

FCC lesson instruction has two parts. The first part is on the left, down below column, and the step by step instruction is on the down left part beneath the first one and the buttons. So you need to double-check as you are trying to pass the lesson.