Skip to main content

Last updated: March 13, 2026

How to Identify Fonts on Any Website

Discover what fonts any website is using. Learn the manual DevTools method and the faster way with Frontend Hero's Font Explorer.

Why Identify Fonts on Websites?

Whether you're a designer looking for inspiration, a developer trying to match a client's existing site, or just curious about beautiful typography - knowing how to identify fonts is an essential skill.

Design Inspiration

See a beautiful font pairing? Find out exactly what fonts they used so you can try similar combinations.

Client Requests

Client wants you to match their existing site's typography? Identify fonts in seconds instead of guessing.

Learning & Research

Study how top brands use typography. Learn which fonts work well for headings vs body text.

1

The Manual Way

Slow

Using Chrome DevTools, you can find font information for any element. However, this requires inspecting each text element one by one.

1

Open Chrome DevTools

Right-click anywhere on the page and select "Inspect", or press F12 (Windows/Linux) or Cmd + Option + I (Mac).

DevTools inspecting a heading element
2

Use the Inspector to Click on Text

Click the inspect icon (arrow in a box) in the top-left of DevTools, then click on the text you want to identify. The element will be highlighted in the Elements panel.

Note: You need to click on each text element individually to find its font.
3

Find font-family in Computed Styles

In the right panel, click on the "Computed" tab. Scroll down or search for "font-family" to see the font being used. The first font in the list is the one actually rendered.

font-family property in Computed styles
4

Note the font-size and font-weight Too

While you're there, scroll to find font-size and font-weight in the Computed panel. You'll need all three properties to fully replicate the typography.

font-family: "Inter", system-ui, sans-serif
font-size: 16px
font-weight: 500
5

Repeat for Every Text Style...

Most websites use different fonts for headings, body text, navigation, buttons, and captions. To see all fonts, you need to repeat steps 2-4 for each different text style on the page.

HeadingsBody textNavigationButtonsCaptionsFooter...

Time estimate: 2-5 minutes to identify all fonts on a typical page

2

With Frontend Hero

Fast

Frontend Hero's Font Explorer shows you ALL fonts used on the entire page at once - headings, body, captions, everything. No clicking element by element.

1

Click the Font Explorer Icon

Click the Frontend Hero icon in your browser toolbar, then select "Font Explorer" from the tools menu. That's it!

Frontend Hero Font Explorer showing all fonts
2

See ALL Fonts Used on the Page

Font Explorer instantly scans the entire page and shows you every font being used, organized in a clean list. Each entry includes the font-family, font-size, and font-weight.

Inter48px / Bold (700)
h1
Inter32px / Semibold (600)
h2
Inter16px / Regular (400)
body
JetBrains Mono14px / Regular (400)
code
3

Click to Copy Any Font Name

Simply click on any font in the list to copy its name to your clipboard. Ready to paste into your CSS.

Font details view with size and weight

Time estimate: 5 seconds to see all fonts on any page

Side-by-Side Comparison

Time to see all fonts

DevTools:2-5 minutes
Frontend Hero:5 seconds

Steps required

DevTools:5+ per element
Frontend Hero:1 click total

Shows all fonts at once

DevTools:No
Frontend Hero:Yes

Frequently Asked Questions

What font is this website using?

To find out what font a website is using, you can either open Chrome DevTools (F12), inspect an element, and check the font-family in the Computed styles tab, or use Frontend Hero's Font Explorer to see all fonts on the page at once.

How do I find the font of a text on a website?

Right-click on the text, select 'Inspect', and look for the font-family property in the Styles or Computed panel. With Frontend Hero, simply click the Font Explorer icon to see every font used on the page instantly.

Can I identify fonts from any website?

Yes, you can identify fonts from any website. The font information is available in the browser's DevTools for every page. Frontend Hero's Font Explorer works on all websites and shows both web fonts and system fonts.

How do I find the font size and weight too?

In DevTools, you need to check font-size and font-weight separately in the Computed panel. Frontend Hero's Font Explorer displays font-family, font-size, and font-weight together for each font, making it much faster to get complete typography information.

What if the website uses multiple fonts?

Most websites use different fonts for headings, body text, and UI elements. With DevTools, you need to inspect each element individually. Frontend Hero shows ALL fonts used on the entire page in one view, organized by usage.

Can I copy the font name directly?

In DevTools, you need to manually select and copy the font-family value. Frontend Hero lets you click any font to copy its name instantly, ready to use in your own CSS.

Does this work for custom web fonts?

Yes, both methods work for custom web fonts loaded via @font-face, Google Fonts, Adobe Fonts, or any other font service. The font-family name displayed is what you need to use in your CSS.