All Collections
How-to
Add your custom font to the page
Add your custom font to the page
Aleks avatar
Written by Aleks
Updated over a week ago

In order to add your own font to the page you should do the following.

  1. First of all, use FTP or file manager to upload your font on your website, in folder...mywebsite/css. Create folder - "fonts". You may also upload your font to Google Drive - check on how to do that here.

  2. Then, open your page and click on the Additional CSS button

3. Then paste the following code in the opened window and click on Save.

@font-face {
 font-family: "YourFontName";
 src: url("http://domain.com/fonts/font.ttf");
}
font-family: "YourFontName"

There are 3 lines you need to change in this code to upload your font:

That's it! Now you font is added to the page!

Feel free to reach us in case of any questions:)

Did this answer your question?