Can i use my own font?
If you want to use a font that is not in the list we will tell you how you can insert your 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:
<link href="https://fonts.googleapis.com/css?family=Barlow+Condensed:400,700" rel="stylesheet">
<style>
html, body, h1, h2, h3, h4, p, span, b, strong {
font-family: 'Barlow Condensed', sans-serif!important;}
@media screen and (max-width: 1000px){
.form-handle-submit{
padding: 0 40px 50px !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!
Did this answer your question?