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 trial

HTML How to Make a Website Creating HTML Content Build the Footer

Karthik Nagarajan
Karthik Nagarajan
5,245 Points

Code 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>
Stone Preston
Stone Preston
42,016 Points

i fixed your code formatting. you need to use 3 backtick characters (below the esc key) not 3 single quotes

2 Answers

Stone Preston
Stone Preston
42,016 Points

you 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
Karthik Nagarajan
5,245 Points

Thank you! Just figured that out:)