Can you use Google Fonts in the Guide? | Community
Skip to main content

Can you use Google Fonts in the Guide?

  • June 4, 2019
  • 2 replies
  • 0 views

Our Marketing team uses some Google Fonts on out corporate website and want me to use them in our Support site too. Is it possible within the framework of the customization capabilities?

2 replies

ModeratorWes

Hi @Alan,

Yes, you can use Google fonts inside of Guide with no issues at all.

You can them in through the Document Head.hbs file:

<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">

or you can call them in from the CSS file:

<style>
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
</style>

Here is a community tip for it as well.


  • Author
  • June 4, 2019

Hey, Wes, thanks for the info!