You can use custom scripts with your landing pages, including pointing to fonts stored on a public link.
If the font you want to use is stored on a public link, there's an option to use those custom fonts on your landing pages.
- Open your landing page
- Click the Settings icon:
- You can now paste into the Custom Scripts field:
To link to your font (for example, Google Fonts), write the following:
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
The font is now being downloaded to your landing page from Google Fonts. You'll need to reference the font in your CSS by writing this:
<style>
body {
font-family: 'Merriweather', cursive;
}
h1,h2,h2.large,h3,h3.large,h4,h5 {
font-family: 'Merriweather', cursive;
/* Applied Merriweather font to all headlines */
}
p,p.ingress {
font-family: 'Merriweather', cursive;
/* Applied Merriweather font to paragraph text */
}
</style>