Help please

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
i can’t get the code right for the HTML helps support visually impaired users with the alt attribute.
please hlep me

<Below this line, add a link to the EXACT exercise that you are stuck at.>
9/15

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>Did you add the alt attribute?

```
src= https://s3.amazonaws.com/codecademy-content/courses/web-101/web101-image_brownbear.jpg/> 

<img src=# alt= A field of yellow flowers

<do not remove the three backticks above>

Hi,

In your img tag you are missing " " around the URL and the alt

it should look something like this:

<img src="IMG-URL" alt="ALTERANTIVE-TEXT"/>
3 Likes

it still is refusing it it says that it is wrong

What error message are you getting?

Did you add the alt attribute?

1 Like

You are receiving that error message because of the way you have written it,

 src= https://s3.amazonaws.com/codecademy-content/courses/web-101/web101-image_brownbear.jpg/> 
<img src=# alt= A field of yellow flowers

as Zainab said the synatx for adding an img tag is,

or,

<img src="example.jpg" alt="example" >

1 Like

it still says that im wrong with the say error message

Please post your full code because the error might be elsewhere. :slight_smile:

how it keeps changing it

Please paste in your full HTML code

never mind i figured it out

2 Likes