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 trialKarthik Nagarajan
5,245 PointsCode shows something wrong! I am not sure why
I am adding the twitter image to the logo in the footer but when I close the alt"" element the code goes red implying something is not correct
<a href="http://twitter.com/karthik2502><img src="img/facebook-wrap.png" alt="Facebook logo"></a>
2 Answers
Stone Preston
42,016 Pointsyou are missing the closing quotation mark for your twitter href:
<a href="http://twitter.com/karthik2502><img src="img/facebook-wrap.png" alt="Facebook logo"></a>
fix it by closing the quotes:
<a href="http://twitter.com/karthik2502"><img src="img/facebook-wrap.png" alt="Facebook logo"></a>
Karthik Nagarajan
5,245 PointsThank you! Just figured that out:)
Stone Preston
42,016 PointsStone Preston
42,016 Pointsi fixed your code formatting. you need to use 3 backtick characters (below the esc key) not 3 single quotes