INSPECTED ON SEPTEMBER 20, 2026

What font does LinkedIn use?

When you inspect LinkedIn, the answer depends on the device in front of you. That is deliberate: a system font stack costs nothing to download and makes the interface feel native everywhere.

Short answer: LinkedIn’s logged-out home page loads no web fonts at all. It uses a system font stack, so you see San Francisco on Apple devices, Segoe UI on Windows and Roboto on Android.

FONTS ON LINKEDIN.COMShare of visible text · 1440px wide viewport

System font stack

System font99.2%
CSS name
-apple-system
Weights
400, 600
Sizes
48px · 32px · 20px · 16px · 14px · 12px

Sizes, weights and spacing by role

These are computed values from the live page, which is what the Font Inspector panel shows when you click each element.

RoleFontSizeWeightLine heightLetter spacing
HeadlineSystem font48px4001.25normal
Body textSystem font20px4001.5normal
ButtonSystem font16px6001.5normal
Measured at a 1440px wide window on September 20, 2026. Responsive sites use other sizes on smaller screens.

The main font stack in the CSS:

font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", sans-serif;
  • We inspected on Windows, where the stack resolves to Segoe UI. On a Mac the same page renders in San Francisco.
  • The stack is unusually thorough: it names fonts for Ubuntu, KDE, GNOME and old Android versions too.
  • The headline is regular weight, 400. Only buttons and labels use 600.

Check any site yourself in one click.

Sites change their type without notice. Font Inspector shows the rendered font, size, weight and spacing of any text on linkedin.com or anywhere else, and lists every font on the page. Free, no account.

Add to Chrome

About the fonts, and whether you can use them

System font stack

The CSS names the interface font of each operating system in turn. The browser uses the first one that exists on the device. No font file is downloaded.

Can you use it? Yes, and it is free. Copy the stack below into your own CSS. Each visitor’s device supplies the font.

Free alternatives to System font stack

Finding a font does not license it. More in how to get a font you found, legally.

Get a similar look with a free font

This starter uses Inter, which is open source, with the sizes and spacing measured above. It is an approximation, not a copy of LinkedIn’s brand typeface.

/* Approximates the LinkedIn look with a free font */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1 {
  font-size: 3rem; /* 48px */
  font-weight: 400;
  line-height: 1.25;
}
p {
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  line-height: 1.5;
}
Try the pairing in the font pairing playground, or build the rest of the scale with the type scale calculator.

How we checked

We opened linkedin.com in Chrome on September 20, 2026 and read the computed styles of its visible text: the declared font stack, the font actually rendered, and how much of the page’s text each family sets. That is the same data the Font Inspector extension shows under Fonts on this page. We re-check these pages periodically, and the date above shows the last inspection.

LinkedIn and its typefaces are trademarks of their respective owners. Font Inspector is not affiliated with LinkedIn.

Questions & answers

What font does LinkedIn use on its website?

LinkedIn’s logged-out home page loads no web fonts at all. It uses a system font stack, so you see San Francisco on Apple devices, Segoe UI on Windows and Roboto on Android.

Can I use the LinkedIn font?

Yes, and it is free. Copy the stack below into your own CSS. Each visitor’s device supplies the font.

How can I check what font LinkedIn uses myself?

Open linkedin.com, then click any text with the Font Inspector extension, or right-click, choose Inspect and look at Rendered Fonts in the Computed tab. Sites change their typography, so checking the live page is the only way to be sure.