Fonts.upset.dev: A privacy-friendly Google Fonts alternative

2 hours ago 1

Google Fonts

  • 2 endpoints (fonts.googleapis.com & fonts.gstatic.com)
  • CSS files are not minified
  • Does not comply with many regulations in the EU
  • Using gzip only for file compression
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMw.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

fonts.upset.dev

  • CSS & font files are in the same endpoint
  • CSS files are optimized and minified (smaller file size)
  • Hides your IP addresses from Google
  • Using brotli and gzip for file compression
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url(/f/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMw.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
Read Entire Article