Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Samuel Wells
2,378 PointsI have added Alternate text to my twitter image but will not let me continue through code challenge
Everytime i hit submit i get a Bummer! be sure you add alt text to the twitter link.
My code is in the footer element and is written as follows:
<,img src="img/twitter-wrap.png" alt"Twitter logo">
Am I doing something ,that should be obvious, incorrectly ?
I am aware that the , between < and img is there. I did not know how to show my code without putting something in that broke the html.
4 Answers

Jeff Busch
19,287 PointsHi Samuel,
Add an equals sign after alt.
Jeff

Brandon Seekins
3,182 PointsTry this (<img src="img/twitter-wrap.jpg" alt="twitter logo">)

Brandon Seekins
3,182 PointsWell this forum won't let me type code not sure whats going on.

Jason Anello
Courses Plus Student 94,596 PointsThis should help you out.
https://teamtreehouse.com/forum/how-to-type-code-in-the-forum

Samuel Wells
2,378 PointsWow,
I was not expecting such a fast reply. I also do not know why I messed that one up lol. Thank you everyone for your assistance. I added the , between the first angle bracket and the img so i could show my code. I will be checking out the forum that you mentioned Jason. I will also be adding an = sign after my alt. I dont see how i missed that pesky = sign.
Brandon Seekins
3,182 PointsBrandon Seekins
3,182 PointsTry this <img src="img/twitter-wrap.jpg" alt="Twitter Logo">
<,img src="img/twitter-wrap.png" alt"Twitter logo"> you have a , after your open bracket and I think that is what is causing your issue unless that was just a typo when you typed this up. Also on your alt tag you have alt"twitter logo" your missing the equal sign after the alt so it should be alt="twitter logo"
Hope that helps.