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

Wes House
Wes House
1,727 Points

Validator issue with Attributes and " "

When I place my HTML into the validator, I get the following two messages referring to several lines:

Attribute logo" is not serializable as XML 1.0.

<img src="Img/facebook-wrap.png" alt "Facebook logo"  class="social-icon"></a>

and

Quote " in attribute name. Probable cause: Matching quote missing somewhere earlier.

<img src="Img/facebook-wrap.png" alt "Facebook logo"  class="social-icon"></a>

I'm not sure if this is implying that I have missing quotes somewhere in my index.html, because I checked and could not seem to find any. It's become very frustrating because it appears as an error several times in the validator. Any help would be greatly appreciated. Thanks!

2 Answers

Hi Wes,

You're missing an equals after your alt attribute.

Also, you may want to make your "Img" subfolder "img", all lowercase.

Wes House
Wes House
1,727 Points

Thanks for the second glance. I looked at it so much, i missed the most simple stuff.