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 trialalbertorosado
3,126 PointsI don´t know why it keeps telling me "be sure you add all text to your twitter link"
<a href="http://twitter.com"><img src="img/twitter-wrap.png"></a> <a href="http://facebook.com"><img src="img/facebook-wrap.png"></a>
2 Answers
Chris Shaw
26,676 PointsHi Alberto,
For the first task, you don't need to add links around the images yet as that's part of task 2. As Nick suggested, you're simply missing the alt
attributes from your img
tags. All you need for task 1 is the following.
<img src="img/facebook-wrap.png" alt="Facebook">
<img src="img/twitter-wrap.png" alt="Twitter">
Happy coding!
Nick Marsh
14,763 PointsIt is telling you to make sure you add your alt text the the links. Try adding alt attribute to your images.
albertorosado
3,126 Pointsstill =(
albertorosado
3,126 Pointsalbertorosado
3,126 Pointsthanks , I put facebook/twitter logo not facebook/twitter that was the problem