When you download a font from a source like Google Fonts, it’s likely in either TTF or OTF formats, the two most widely used font formats in the world. If you’re going to use these fonts on the web, however, it’s a good idea to convert them to WOFF2 first, because WOFF2 fonts are significantly smaller in size (WOFF2 fonts are the same as TTF or OTF fonts but compressed).

Of course, in many cases (as with Google Fonts) one can just use a CDN, but it’s generally a good idea to go to the trouble of self-hosting fonts (on the same domain as your site), rather than using a CDN, as then the fonts would be delivered to the end-user slightly faster when they visit your site. That’s because accessing a CDN involves making additional network requests, DNS lookups, fetching additional CSS files, etc.

Fortunately for us, Google has an easy-to-use open-source program for converting between TTF/OTF and WOFF2 formats. We can just clone the repository, build the program, and use it:

1# Clone and build the program
2git clone --recursive https://github.com/google/woff2
3cd woff2
4make clean all
5
6# Use it to convert a TTF/OTF font to WOFF2
7./woff2_compress ~/Download/font.ttf

To install the program on your computer (assuming of course that it’s Unix-based), just copy the woff2_compress and woff2_decompress binaries to a directory in your $PATH (on Linux, I would just copy them to /usr/bin).