All Collections
How-to
Add your own font to all pages
Add your own font to all pages
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, click on gear button on your project.

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

@at-root {
  @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?