Free Fonts — Top Sites, Live Previews, and How to Use Them

Browse trusted sources for free fonts, test live previews, copy clean CSS, and learn the right way to use web fonts. Open-source, free-for-commercial, and personal-use collections included.

Google Fonts

OFL

The largest open-source library with fast global CDN, subsets, and variable fonts. Ideal for web and apps. Most families use the SIL Open Font License.

WebfontsVariableCommercial OK*

Fontshare (by ITF)

Free

Quality typefaces offered for free by Indian Type Foundry. Clean families, easy CDN embed, and many variable options.

WebfontsVariable

Font Squirrel

Free Commercial

Curated directory focused on free-for-commercial use fonts. Includes a webfont generator for self-hosting.

Commercial OK*Generator

The League of Moveable Type

OFL

Classic open-source foundry with timeless families like League Spartan and Raleway. Great for branding and editorial.

Open SourceBranding

Velvetyne

OFL

Experimental open-source typefaces with distinctive display styles. Perfect for posters, culture, and creative work.

DisplayExperimental

Collletttivo

OFL

Community foundry releasing high-quality free fonts under open licenses. Strong editorial and display options.

Open SourceEditorial

Open Foundry

OFL

Curated open-source font index with testing tools and design-centric presentation. Ideal for discovering fresh families.

1001 Fonts

Mixed Licenses

Large directory with filters for free-for-commercial use. Read the license per family; many are personal-use only.

DaFont

Personal Use

Huge archive best for personal projects and inspiration. Licenses vary widely; check each download page.

Icon Fonts (Font Awesome, Material Icons, Remix Icon)

Free Tiers

For UI icons using a font pipeline. Consider modern SVG icon systems, but icon fonts remain useful for quick adds.

UICDN

Live Preview and CSS Snippets

Local only — nothing uploaded
The quick brown fox jumps over the lazy dog. 0123456789
font-family: Inter, sans-serif; font-weight: 600;

Feature Comparison (Snapshot)

Licenses vary by family
Site Open Source Free Commercial Variable Fonts CDN/Webfonts Notes
Google FontsYesYes*YesYesLargest library, fast CDN
FontshareMixedYesManyYesModern families
Font SquirrelMixedYes*SomeGeneratorCurated for commercial use
League of Moveable TypeYesYesSomeSelf-hostTimeless classics
VelvetyneYesYesSomeSelf-hostExperimental display
DaFontNoVariesFewNoGreat for personal projects

How to Use Free Fonts on the Web

  1. Check the license: OFL and other permissive licenses are best for commercial projects. Some sites list personal-use-only fonts.
  2. Choose delivery: CDN link for speed, or self-host with @font-face for control and privacy.
  3. Preload critical fonts for your hero text if CLS is a concern; define fallback stacks to avoid flashes.
  4. Prefer variable fonts when available to reduce requests and get flexible weights.

CDN Example

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
  body{ font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
</style>

Self-host Example

@font-face{
  font-family: "MyFont";
  src: url("/fonts/MyFont-Variable.woff2") format("woff2");
  font-display: swap;
}
body{ font-family: "MyFont", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }

* Always verify each family’s license on the source site.

FAQs

Are Google Fonts free for commercial use?

Most are released under OFL and are free for commercial use. Confirm the license on each family page.

Should I use icon fonts or SVG icons?

SVG icons are more flexible for modern apps. Icon fonts remain useful for quick setups or legacy pipelines.

Do web fonts affect site speed?

Yes. Use font-display: swap, subset where possible, and limit families and weights.

What is the best general-purpose font?

Inter, Roboto, and Source Sans 3 are versatile. Pair with a serif like Merriweather or Playfair for headings.