Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Creating HTML Content Add Social Media Links

Not Registering Code...Don't know if there is a bug.

I am currently on the code challenge of Adding Social Media links within the Creating HTML Content Track.

The challenge is to add the facebook and twitter images to the footer with alternate attributes. My code is written correctly but it pops up with the error that I am missing my alt attribute when it's written in my code.

<img src="img/twitter-wrap.png" alt"Twitter Logo">

What should I do?

5 Answers

<img src="img/facebook.png" alt="This is the alt you have to use one on every img" /> So you would put alt="Facebook"

Hope this helps

img src="img/facebook.png" alt="This is the alt you have to use one on every img"

nevermind forgot "="

Thanks Dean!

Glad to help!