Can I use my own font?

You can use other fonts such as Google fonts, however premium fonts are not included.To use a Google font you can insert the following code snippet in the head tag of your page using the code injection:

<style>
    @import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
    html, body, h1, h2, h3, h4, p, span, b, strong {
        font-family: 'Barlow Condensed', sans-serif!important;
    }
</style>

In this example you will change all the fonts on the page to Barlow Condensed. If you have a different font please change the cursive and underlined text to your desired font and you are ready to go!

You can find the code-injection at the bottom of the left side panel within the FastPages tool.


Was this article helpful?