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 trialMile Mijatovic
7,792 PointsWhat is the best way to include google fonts api in our site?
Hello,
please tell me what is the best way to include google font api in our website,
- directly include at the top in main.css file (@import...), or
- in head tag, include link type="text/css" rel="stylesheet" href="....."
3 Answers
Matt McNally
516 PointsI believe the web design course says to place the google font code in the head tag before the main.css but after normalize.css.
Yaroslav Kleshchev
8,744 PointsMost of the time, its best to use the link method. Import first has to import the fines before they can be used. And this can create problems So it best just to use the link method.
Matt McNally
516 PointsIf that works, please upvote. Thanks!
Mile Mijatovic
7,792 PointsMile Mijatovic
7,792 PointsOk, thanks for reply