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 trialHannah Smith
635 PointsI received an error at the WC3 markup service relating to my google font choice.
Line 7, Column 173: Bad value http://fonts.googleapis.com/css?family=Roboto:400,300,400italic,700,700italic,900|Alegreya:400italic,700italic,400,700,900 for attribute href on element link: Illegal character in query: not a URL code point. ā¦900|Alegreya:400italic,700italic,400,700,900' rel='stylesheet' type='text/css'> Syntax of URL: Any URL. For example: /hello, #canvas, or http://example.org/. Characters should be represented in NFC and spaces should be escaped as %20.
3 Answers
notf0und
11,940 PointsChange the pipe character ( | ) to it's UTF-8 character: %7C.
Aaron Jackson
5,644 PointsCan you post your code?
Aadit bimbhet
813 Points<link href="http://fonts.googleapis.com/css?family=Changa+One%7cOpen+Sans:400italic,700italic,400,700,800" rel="stylesheet" type="text/css">
Hannah Smith
635 PointsHannah Smith
635 PointsThis worked. Thank you!
Deb Murphy
1,641 PointsDeb Murphy
1,641 PointsI had the same error - thank you for the fix Bryan H!