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

CSS

What 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,

  1. directly include at the top in main.css file (@import...), or
  2. in head tag, include link type="text/css" rel="stylesheet" href="....."

3 Answers

I believe the web design course says to place the google font code in the head tag before the main.css but after normalize.css.

Ok, thanks for reply

Most 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.

If that works, please upvote. Thanks!