Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS best way to add Google web fonts with LESS? Re: best way to add Google web fonts with LESS?

#121697
notfilc
Member

If I understand correctly, you just want to use that site wide as your main font? why not just add it to your body tag..

body {
font-family: ‘Merriweather’, sans-serif;
}

If you want to have it in more places just store it as a variable and call it whenever you need it.