Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

James Woodward
Courses Plus Student 645 PointsValidation Error!?
I get a different result during validation testing than the one shown in the video.
I used a different font, but apart from that the HTML is the same. I get the following error:
Line 7, Column 141: Bad value http://fonts.googleapis.com/css?family=Fugaz+One|Open+Sans:400italic,700italic,400,700,800 for attribute href on element link: Illegal character in query: not a URL code point. …ne|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'>
It appears to have an issue with the closing of the statement, with the '>' after type='text/css'> being the problem.
Any ideas?
4 Answers

Emma Willmann
Treehouse Project ReviewerI think the issue is with the link. the link above has a | between One and Open. When I click on it, it pulls up the CSS info for that font, but it has changed the | in between One and Open to %7C. Try changing your link out with the link below. I would not add the / before the closing > as suggested above, as the link tag doesn't us that.
http://fonts.googleapis.com/css?family=Fugaz+One%7COpen+Sans:400italic,700italic,400,700,800

Richard Dale
167 Pointswhat happens with type='text/css' />

Richard Dale
167 PointsJust to be clear, I wasn't recommending that he left the / in, not that it matters just wanted to see if that was causing the issue.
Just be consistent with your use of the closing tags.

James Woodward
Courses Plus Student 645 PointsThat worked! replacing the | with %7C resolved the issue. Many thanks!