Question

Here is a sample CSS

h1 {
   font-family: 'header-font', arial, sans-serif;
}

p {
   font-family: 'paragraph-font', arial, serif;
}

Is it possible to load any remote Google Font (let say 'Lato') so that it's family name in CSS would be 'header-font'?

Edit: The idea behind this is to be able to easily swap fonts in a WP theme. Unfortunately using variables in CSS preprocessors is not an option in my case.

Was it helpful?

Solution 3

Yes, you can give any name you want when you define the font family in the @font-face style declaration and use that name to reference it later in the stylesheet.

@font-face
{
  font-family: whateverYouWant;
  src: url('example.ttf'),
       url('example.eot');
       ... /* and so on */
}

Whatever you name the style as in the font-family property is how it will be referred to from the rest of the document. However I don't know how it competes with local font files (so if you tried to name a custom font Arial I'm not sure what you would get - the custom font or the real Arial). I don't know why you would do that anyway though.

OTHER TIPS

I don't think you can to be honest. The Google font has a predefined name when you view the google font. See this for example: http://fonts.googleapis.com/css?family=Akronim

Its name is set as 'Akronim' and I dont think you can reference it by any other name.

Yes, very easily. Once you located the font at Google, eg.

@import url('https://fonts.googleapis.com/css?family=Lato:400&subset=latin-ext');

just direct your browser to the url specified:

https://fonts.googleapis.com/css?family=Lato:400&subset=latin-ext

What you get back is the @font-face CSS item for the font (or fonts). Simply use this verbose version in your CSS instead of the original @import specification. You can freely rename the font-family item in any of these descriptions. Yes, you have to make sure there are no clashes with other fonts but the naming is completely up to you.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top