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 trialMarco Zifaro
2,075 PointsSpecial characters ä ,ö, ü
I am trying to build a German website, when integrating a new Font from Google font workspace doesn't display the characters ä, ö, ü within the website properly even though they are available with this font
Jorge Pimentel
Courses Plus Student 5,417 PointsYou can always add the special characters in your HTML. Here's a list where you can find those http://www.ascii.cl/htmlcodes.htm
Annamari Bán
5,071 PointsAnnamari Bán
5,071 PointsWhen choosing the font on Google Fonts, make sure you tick the Latin Extended checkbox on the Customize tab so you get the url with the right subset, e.g.
<link href="https://fonts.googleapis.com/css?family=Open+Sans&subset=latin-ext" rel="stylesheet">
or
@import url('https://fonts.googleapis.com/css?family=Open+Sans&subset=latin-ext');