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 trialJohn Wilson
11,739 PointsMy font-family property is going to the default instead of my google fonts.
h2 { font-family: 'Cutive Mono', sans-serif; font-size: 0.75em; margin: -5px 0 0; font-weight: normal; }
The h2 is using sans-serif, not cutive mono. If I remove the sans serif value, then it will use cutive mono. I thought it was just a back-up but it seems like the program is being read as if cutive mono is not in the browser.
1 Answer
John Wilson
11,739 PointsOkay I solved it. When I copied and pasted my html folders from index to about, I only updated my index.html with my new font choices. So that page worked but not the others. I added my font-family and it works now. Thanks!