OLD-STYLE SERIF WITH CALLIGRAPHIC ROOTS · FREE ALTERNATIVES

Free fonts similar to Palatino

Palatino brings the movement of a broad-nib pen to a sturdy text face. It is wider and more open than Garamond or Times, which helped it survive poor paper, early laser printers and screens. It is one of the few elegant serifs most desktop visitors already have installed.

Short answer: the closest free alternative to Palatino is Crimson Pro. Gelasio is also worth a look. All are open source and free for commercial use.

PalatinoTHE ORIGINAL

Palatino is not installed on this device, so it cannot be drawn here. The free alternatives below are live. On a device that has it, this row shows the original and unlocks the overlay.

Crimson ProCLOSEST MATCH
Written with a broad-nib pen
GelasioFREE ALTERNATIVE
Written with a broad-nib pen
MAKE IT YOURS
/* Crimson Pro is open source. Self-host it or load it from Google Fonts. */
font-family: "Crimson Pro", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;

The alternatives in detail

1. Crimson Pro

Why it works. An old-style text face with a calligraphic italic and a full weight range, for the same humanist, bookish tone.

What differs. Narrower with a smaller x-height, so text looks lighter and more compact than Palatino.

Open Crimson Pro on Google Fonts ↗

2. Gelasio

Why it works. A wide, sturdy text serif with a generous x-height, which matches Palatino’s breadth and color on screens.

What differs. Its proportions follow Georgia, so it is more transitional and less calligraphic in the details.

Open Gelasio on Google Fonts ↗

How to recognize Palatino

Hermann Zapf, designed in 1949 and released in 1950 by the Stempel foundry, later Linotype. Named after the Renaissance writing master Giambattista Palatino.

  • Visible pen logic: strokes swell and taper as if written with a broad nib.
  • Wide, open letters with a larger x-height than most old-style faces.
  • The CSS usually lists it as Palatino Linotype, Book Antiqua, Palatino to cover Windows and Mac.

In a site’s CSS it may appear as Palatino Linotype, Palatino LT Std, Palatino Nova, Book Antiqua. Not sure what you are looking at? Identify the font on the live page first.

Is Palatino free?

Palatino ships with macOS and Palatino Linotype with Windows, and Microsoft Office adds the lookalike Book Antiqua. None of them can be served as a web font without a license. Palatino Linotype is also in the Adobe Fonts library.

The alternatives on this page are open source, so you can use them on commercial sites, self-host the files and ship them in products. Read more in font licensing in plain English.

Use Crimson Pro in your CSS

Put the free font first and keep sensible fallbacks behind it. Self-hosting the files is the most private and usually the fastest option.

@font-face {
  font-family: "Crimson Pro";
  src: url("/fonts/crimson-pro-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("/fonts/crimson-pro-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

body {
  font-family: "Crimson Pro", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}
One rule per weight you host. Adjust the file paths to match. Pairing it with a second face? Try the font pairing playground.

Saw a font you can’t place, or can’t afford?

Font Inspector names the font on any website in one click. For popular paid and system fonts it suggests free look-alikes right in the panel.

Add to Chrome

Questions & answers

What is the closest free font to Palatino?+

Crimson Pro is the closest free alternative to Palatino. An old-style text face with a calligraphic italic and a full weight range, for the same humanist, bookish tone. Gelasio is also worth testing.

Is Palatino free to use?+

Palatino ships with macOS and Palatino Linotype with Windows, and Microsoft Office adds the lookalike Book Antiqua. None of them can be served as a web font without a license. Palatino Linotype is also in the Adobe Fonts library.

What Google Font looks like Palatino?+

On Google Fonts, the nearest matches are Crimson Pro and Gelasio. All are open source and free for commercial use. None is an exact copy, so compare them with your own text first.

How can I tell whether a website uses Palatino?+

Inspect the text. Browser DevTools show the rendered font in the Computed tab, and the Font Inspector extension shows the family, the rendered font and free look-alikes in one click.