Skip to main content

Fonts

Add custom fonts

Hosted fonts

Go to: Panel > Site > External files:

Add URL > https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i
Add URL > https://fonts.googleapis.com/css?family=Lora:400,700

Go to: Panel > Site > Custom CSS:

html {
  --font-family-body: Roboto;
  --font-family-heading: Lora;
}

Self-hosted fonts

Upload font files to server: /assets/fonts/

Go to: Panel > Site > Custom CSS:

/* reduced example */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: 
    local('Roboto'),
    local('Roboto-Regular'),
    url('/assets/fonts/roboto/roboto-regular.woff') format('woff'),
    url('/assets/fonts/roboto/roboto-regular.woff2') format('woff2');
}

html {
  --font-family-body: Roboto;
  --font-family-heading: Lora;
}

🤖 Privacy Policy

We use cookies to improve your experience. Find out more in our privacy page and documentation page.

👾 Popup With Options

Popup can have up to 3 buttons you can use to save user preferences. To learn more visit documentation page.