What font does YouTube use?
YouTube is one of the most visited sites in the world, and it runs on a free font anyone can use. We inspected the logged-out home page, which shows only the sidebar and a sign-in prompt, so the sample of text is small.
Short answer: YouTube’s interface uses Roboto, loaded from Google Fonts. On the logged-out home page every piece of text was set in Roboto, at weights 400 and 500.
Roboto
Google Fonts100%- CSS name
Roboto- Weights
- 400, 500
- Sizes
- 14px · 12px
- Served from
- fonts.gstatic.com
The font stack
The main font stack in the CSS:
font-family: Roboto, Arial, sans-serif;- Interface text is small and uniform: 14px for labels and 12px for secondary text.
- Only two weights are in use, 400 and 500. Medium, not bold, marks emphasis.
- YouTube also has a brand typeface, YouTube Sans, for marketing and some headings. It did not appear on the page we inspected.
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 youtube.com or anywhere else, and lists every font on the page. Free, no account.
About the fonts, and whether you can use them
Roboto
Roboto was designed by Christian Robertson at Google and introduced as the Android system font in 2011. It is a neo-grotesque with a mechanical skeleton and friendly, open curves.
Can you use it? Yes. Roboto is open source and free for commercial use. Download it from Google Fonts or embed it from there.
On Google Fonts: Roboto.
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 Roboto, which is open source, with the sizes and spacing measured above. It is an approximation, not a copy of YouTube’s brand typeface.
/* Approximates the YouTube look with a free font */
body {
font-family: "Roboto", Arial, sans-serif;
}
How we checked
We opened youtube.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.
YouTube and its typefaces are trademarks of their respective owners. Font Inspector is not affiliated with YouTube.
Questions & answers
What font does YouTube use on its website?
YouTube’s interface uses Roboto, loaded from Google Fonts. On the logged-out home page every piece of text was set in Roboto, at weights 400 and 500.
Can I use the YouTube font?
Yes. Roboto is open source and free for commercial use. Download it from Google Fonts or embed it from there.
How can I check what font YouTube uses myself?
Open youtube.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.