Articles on: Frequently asked questions

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!

Updated on: 25/03/2022

Was this article helpful?

Share your feedback

Cancel

Thank you!