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

Illegal character in scheme data: \ is not allowed.

Checking my html code and received this error message:

Error: Bad value C:\Users\Holly\Desktop\Coding\pro2\pro2.css for attribute href on element link: Illegal character in scheme data: \ is not allowed.

Using Visual Studio. How should I write my file path if "\" is not allowed? Thx!

Reversing the direction of the slashes did the trick. Thanks for the quick response!!!

1 Answer

Steven Parker
Steven Parker
231,007 Points

Some ideas:

  • enclose the whole URL in quotes
  • substitute "/" for "\"
  • try using two characters "\\" to represent each one

If none of these work (individually or in combination), try showing your complete code here.