Convert TTF to WOFF
Convert a .ttf font to WOFF for the web. Each font table is compressed and packed into a WOFF 1.0 container locally in your browser — nothing is uploaded.
What is WOFF?
WOFF (Web Open Font Format) is a font wrapper designed for @font-face on the web. It is essentially a TrueType/OpenType font with each table compressed and some metadata added, so it downloads faster than a raw .ttf.
Why convert TTF to WOFF?
WOFF 1.0 is supported by every browser in use today and is a safe baseline for web fonts. Serving WOFF instead of a raw TTF reduces file size and signals a font intended for the web.
How the conversion works
Convertur reads the sfnt table directory, compresses each table with zlib, and assembles a valid WOFF 1.0 file. Tables that would not benefit from compression are stored as-is, exactly as the WOFF spec allows.
WOFF vs WOFF2
WOFF2 uses Brotli and is smaller still, but WOFF 1.0 has the widest reach and needs no extra decompression support. Ship WOFF as a fallback alongside WOFF2 for the best coverage.
How to ttf to woff
- Drop a .ttf (or .otf) file into the zone above.
- Press Convert to build the WOFF locally in your browser.
- Download the .woff file.
- Reference it from a @font-face rule in your CSS.