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 trialRobert Browning
442 PointsWhy does it keep asking me to add alt text to my twitter link when I already have? I think something is broken.
<footer> <img src="img/twitter-wrap.png" alt"Twitter logo"> <img src="img/facebook-wrap.png" alt"Facebook logo"> </footer>
6 Answers
Andrew Molloy
37,259 Pointsyou're missing an equals sign "=" after your alt attributes.
jase richards
10,379 PointsYou can try saving then closing the browser and reloading everything, if you think its broken. It probably isn't and there is something wrong with your coding, post it so fresh eyes can look at your work.
Andrew Molloy
37,259 PointsYou could try refreshing the browser, occasionally things get messed up. But could just be a stray character somewhere. Could you post the code? (You need to follow the markdown instructions on how to post code in the comments)
Robert Browning
442 PointsI tried to post the code in comments but it doesnt show up even with the ''' in between. This is frustrating being a newb.
Andrew Molloy
37,259 PointsThat's the wrong character, looks like you're using single quote marks. You need to put three ticks ``` (copy and paste from my comment to make sure). Put them before and after your code. Also put "html" straight after the first set of ticks to tell it which language it should format for.
Robert Browning
442 Pointshtml <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>
Robert Browning
442 PointsWow. How did i miss that thankyou so much