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 Responsive Web Design and Testing Website Testing

Getting errors in my footer on the W3C validation

i am getting error messages from the W3C saying " Line 66, Column 87: Quote " in attribute name. Probable cause: Matching quote missing somewhere earlier. ā€¦1"><img src= "img/twitter-wrap.png" alt "Twitter logo" class="social-icon"></a> " also getting the same one at the end of "Twitter logo" and the same ones in my Facebook link, my code is as follows :

<footer> <a href="http://twitter.com/sfahnholz21"><img src= "img/twitter-wrap.png" alt "Twitter logo" class="social-icon"></a> <a href="http://facebook.com/stephenfahnholz"><img src="img/facebook-wrap.png" alt "Facebook logo" class="social-icon"></a> <p>Ā© 2015 Stephen Fahnholz</p> </footer>

Christopher Loyd
Christopher Loyd
Courses Plus Student 5,806 Points

I believe your alt attributes should be alt="Twitter logo" and alt="Facebook logo", it looks like you're missing your assignment operator (= sign).

1 Answer

Thanks very much, Christopher Loyd, that fixed the issues!!