How to Use Woff2 Fonts on Unbounce

Kenton de Jong
2 min readOct 21, 2023
You could use this same idea for woff, eot and ttf, but that’s a bit overkill. Woff2 is probably fine.

I recently was given a GitHub repo with some fonts to use on a landing page. Normally, I would download the font files, upload them to my server, and link them with some very simple CSS:

@font-face {
font-family: 'MyCoolFont';
src: url('/fonts/my-cool-font-550.woff2') format('woff2');
}

body {
font-family: 'MyCoolFont', sans-serif;
}

--

--

Kenton de Jong

I am a web developer turned travel blogger that is forced to code to eat.