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 trialSamuel 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,610 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.