Google Chrome Developers says:
The new WOFF 2.0 Web Font compression format offers a 30% average gain over WOFF 1.0 (up to 50%+ in some cases). WOFF 2.0 will be available from Chrome M36 (beta) and there on.
I have installed Googles compression library on a DigitalOcean (ref) server. Feel free to start the convert from TTF to WOFF2. No software installation required. Simply use your terminal window. Web developers, make your life easier and webpages faster!
curl --data-binary "@/local/path/font.ttf" -o "/local/path/font.woff2" -H "Content-Type: font/ttf" -H "Accept: font/woff2" -X POST http://188.226.250.76Required adjustments:
- @/local/path/font.ttfis the local path to your TTF file (including the leading @ character).
- /local/path/font.woff2is the local path for the converted WOFF2 file.
- Please don't change the header (Content-Type and Accept).
@font-face {
	font-family: MyFont;
	src:
		url('myfont.woff2') format('woff2'),
		url('myfont.woff') format('woff');
}- No serverside GZIP compression for WOFF files, because WOFF already contains compressed data.
- Think about the correct mime type value for WOFF 2.0 web fonts (Google uses font/woff2 as mime type):
types {
    font/woff2  woff2;
}AddType  font/woff2  .woff2- Google Chrome 36