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 trialjesse markowitz
288 PointsStep 1-Adding text to your links?
I keep getting this- Be sure you add alt text to your Twitter Link.
here's the footer code:
<footer> <img src= "img/twitter-wrap.png"> alt= "twitter logo"> <img src= "img/facebook-wrap.png"> alt="facebook logo"> <p>Ā© 2013 Nick Pettit.</p> </footer>
Nothing else has been changed. What am I forgetting?
Matthew Butterfield
2,674 PointsYou need to remove the first > character in the <img src tag, because its closing off your "alt= "twitter logo"> part of the code.
2 Answers
Jovanny Elias
16,204 PointsLike they mentioned above removing the first >. But also there should be no space after src=.
jesse markowitz
288 PointsThanks!
Angela Bortone
7,405 PointsAngela Bortone
7,405 PointsRemove the first > as it is closing your tag.
<img src="img/twitter-wrap.png" alt="twitter logo">