Downloading Glide version 1.1…
https://github.com/mblode/glide/releases/download/v1.1/Glide-1.1.zip
Glide is open source. Star the repo on GitHub to support the project.
Installation instructions
- 1Extract the Glide zip archive.
- 2Open the Font Book application.
- 3In the main menu, select File → Add Fonts…
- 4Select
glide-variable.ttfand press Open. - Alternatively, move or copy the font files directly into
~/Library/Fonts/
Variable font files
Glide ships as a variable font — glide-variable.ttf. Variable fonts let you dial any weight from 400 (Regular) to 900 (Black) on a continuous axis, using a single file instead of separate files per weight.
Variable font support is excellent in all modern desktop applications and browsers. If you encounter software that does not support variable fonts, the web WOFF2 files below include static cuts at 400, 500, 700, and 900.
Web use
For web projects, use the WOFF2 variable font files. Download glide-variable.woff2 and place them in your project's public/ directory, then add:
@font-face {
font-family: 'GlideVariable';
src: url('/glide-variable.woff2') format('woff2');
font-weight: 400 900;
font-style: normal;
font-display: swap;
}
:root {
font-family: GlideVariable, sans-serif;
}Using Next.js? See the Next.js installation guide for setup with next/font/local and Tailwind.