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 trialDaniel Botana
542 PointsNot 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
Dean jenkins
5,230 Points<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
Dean jenkins
5,230 Pointsimg src="img/facebook.png" alt="This is the alt you have to use one on every img"
Daniel Botana
542 Pointsnevermind forgot "="
Daniel Botana
542 PointsThanks Dean!
Dean jenkins
5,230 PointsGlad to help!