Need help on step 89

Can someone help with this? I think I am close, but it will not let me pass.

I do not know how to load my code onto here. Can someone please show me how?

1 Like

to load code onto a post, make a sequence of three backticks, like this ``` then paste the code, then make three more backticks

  <h2>Coffee</h2>
      <img src="https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg"alt:"coffee icon">

What have I done wrong here?

It tells me that your img element should have an alt attribute of coffee icon.

your alt attribute needs to be

alt=“coffee icon”

rather than,

alt:“coffee icon”

use an = not a :

4 Likes

Thank you! Now I can get back to work.

1 Like

Great! glad to help :slight_smile:

1 Like

Just saved my life with that comment. i had kinda the same issue but was in my src atribute… i had src: instead of src= and it wasnt going through.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.