🌐
SimilarFont
similarfont.io › 2-google-fonts-similar-to-segoe-ui
2 Google Fonts Similar to Segoe UI
They have used this font in many of the logos of their products even though the font was originally made by Monotype. Segoe UI is simply a member of the much larger Segoe font family. With that being said here are a few free similar alternatives. The best Google Font alternatives for Segoe UI are:
🌐
Google Support
support.google.com › chrome › thread › 227736894 › font-changed-to-segoe-ui
Font changed to Segoe UI - Google Chrome Community
July 28, 2023 - Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
Discussions

How can I get the "Segoe UI Symbol" font in Google Docs? - Google Docs Editors Community
Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on More on support.google.com
🌐 support.google.com
March 1, 2021
Fonts on Google Fonts similar to this?
This font ass More on reddit.com
🌐 r/web_design
5
0
February 8, 2025
Why doesn't Segoe UI font work in Google Chrome on Metro Bootstrap?
When viewing the Metro bootstrap in Firefox, the font looks as it should, while in Chrome it defaults to what I assume is Helvetica. The problem is that I don't know where that "nice" font which sh... More on webmasters.stackexchange.com
🌐 webmasters.stackexchange.com
How to use the «Segoe UI» font in Google Docs?
Loading · df.tips · How to use the «Segoe UI» font in Google Docs · Other · google, font, google-docs · dmitrii_fediuk (Dmitrii Fediuk) · August 17, 2025, 3:54am · Use «Noto Sans»: it is very similar More on df.tips
🌐 df.tips
1
0
August 17, 2025
🌐
Google Fonts
fonts.google.com
Browse Fonts - Google Fonts
Making the web more beautiful, fast, and open through great typography
🌐
Google Support
support.google.com › docs › thread › 100349215 › how-can-i-get-the-segoe-ui-symbol-font-in-google-docs
How can I get the "Segoe UI Symbol" font in Google Docs? - Google Docs Editors Community
March 1, 2021 - Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on
🌐
Reddit
reddit.com › r/web_design › fonts on google fonts similar to this?
Fonts on Google Fonts similar to this? : r/web_design
February 8, 2025 - The font is Segoe UI, it's a variant of Microsoft's brand font that comes pre-installed on Windows devices. However, it looks like your device is rendering it in faux bold—the vertical strokes have been made thicker, without the same happening to horizontal strokes—which could indicate ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › typography › font-list › segoe-ui
Segoe UI font family - Typography | Microsoft Learn
Segoe UI is a clear, readable sans serif typeface with an open, neutral look; it works well both in headlines and in short passages of text. It is especially appropriate for labels, captions, signs, and subtitles.
🌐
Google Fonts
fonts.google.com › knowledge › glossary › system_font_web_safe_font
System font, or web-safe font – Fonts Knowledge - Google Fonts
In certain settings, system fonts are still employed as the sensible default, such as in word processing apps that generate documents that will need to be edited on other users’ computers. It’s possible in CSS to invoke system UI fonts in web pages: font-family: system-ui results in Segoe on Windows, San Francisco on macOS, and Roboto on Android.
Top answer
1 of 2
3

No, Segoe UI does not come bundled with Firefox.

Segoe UI is the default for interface elements for Windows starting with Windows Vista and Microsoft Office 2007. So, Segoe UI and other Segoe variants can be obtained by installing Office 2007 or later, or Windows Vista or later.

More information can be found here:

  • https://www.microsoft.com/typography/fonts/family.aspx?FID=331
  • http://en.wikipedia.org/wiki/Segoe#Segoe_UI

Therefore, machines running Windows XP, or non-windows OSes might not have this font installed. Looking at the Metro bootstrap CSS it should fall back to "Helvetica Neue". Which is a font that is installed on most Mac's.

If none of Segoe UI variants or Helvetia Neue it falls back to the default Sans-serif font in your browser. Ironically, this seems to be Segoe UI (at least, on my machine).

Since this too doesn't render the page in Segoe, i assume that the system where you are running chrome on, doesn't contain the Segoe fonts.

As far as I am aware, Word for Mac does not install the Segoe fonts.

2 of 2
0

Whilst I am not familiar with the Windows fonts in question, this issue may be due to the way different browsers look up font names. WebKit looks up font-family names first by checking the PostScript name of the font for a match, so if you have, for example font-family: "UniverseLT330", "UniversLT", "Univers", san-serif; then WebKit will match UniversLT330 if available, despite that representing a face not a family. Mozilla will only look for family name matches, and therefore match "Univers" if available, and sans-serif otherwise. Could it be that you have a different font name before Segoe UI that Chrome is picking up and Firefox is missing? Without seeing the CSS we're kinda stabbing in the dark here though.

Find elsewhere
🌐
FontAlternatives
fontalternatives.com › home › compare fonts › google sans vs segoe ui
Google Sans vs Segoe UI — Font Comparison
Where Google Sans leans geometric, modern, Segoe UI brings neo-grotesque, minimal. Compare which suits your Ui project. ... Typography optimized for user interfaces, design systems, and digital products. ... ... Typography optimized for websites, landing pages, and web applications. Web font...
🌐
df.tips
df.tips › other
How to use the «Segoe UI» font in Google Docs? - df.tips
August 17, 2025 - Loading · df.tips · How to use the «Segoe UI» font in Google Docs · Other · google, font, google-docs · dmitrii_fediuk (Dmitrii Fediuk) · August 17, 2025, 3:54am · Use «Noto Sans»: it is very similar
Top answer
1 of 5
3

Its difficult to get this working in Firefox. Font weight 300 doesnt work few time in all versions. The below code worked for me and compatible with all browsers.

 font-family: "Segoe UI Light","Segoe UI";
 font-weight: 300;

See Here This is from a HTML5 solution, but it might help you too, as it's also in Visual Studio... Hovering over the CSS font-weight options will tell you the weight in words (Light, Semi, etc.) 100: Thin 200: Extra Light (Ultra Light) 300: Light 400: Normal 500: Medium 600: Semi Bold (Demi Bold) 700: Bold 800: Extra Bold Hope it helps.

Follow the below options and add font-weight instead of using semibold or semilight.Just use 'segoe ui' with combination of font-weight.

    @font-face {
    font-family: "Segoe UI";
    font-weight: 200;
    src: local("Segoe UI Light");
}
@font-face {
    font-family: "Segoe UI";
    font-weight: 300;
    src: local("Segoe UI Semilight");
}
@font-face {
    font-family: "Segoe UI";
    font-weight: 400;
    src: local("Segoe UI");
}
@font-face {
    font-family: "Segoe UI";
    font-weight: 600;
    src: local("Segoe UI Semibold");
}
@font-face {
    font-family: "Segoe UI";
    font-weight: 700;
    src: local("Segoe UI Bold");
}
@font-face {
    font-family: "Segoe UI";
    font-style: italic;
    font-weight: 400;
    src: local("Segoe UI Italic");
}
@font-face {
    font-family: "Segoe UI";
    font-style: italic;
    font-weight: 700;
    src: local("Segoe UI Bold Italic");
}
2 of 5
1

Could be because of various reasons:

  1. Perhaps you are using the wrong font format. Chrome supports SVG, WOFF, TTF/OFT.
  2. Taken the a wrong approach towards defining font-weight, which leads the browser to interpret the font-weight property wrongly

Sample: http://pastebin.com/FiGvAfTk

Are you defining your fonts properly?

🌐
Adobe Fonts
fonts.adobe.com › adobe fonts › segoe ui
Segoe UI | Adobe Fonts
Segoe UI is a clear, readable sans serif typeface with an open, neutral look; it works well both in headlines and in short passages of text. It is especially appropriate for labels, captions, signs, and subtitles. Segoe was designed by type designer Steve Matteson to be a friendly, readable ...
🌐
CDNFonts
cdnfonts.com › segoe-ui-4.font
Segoe UI Font Family Download for Desktop & WebFont | CDNFonts.com
Download Segoe UI font from free CDN or use it on your website as webfont.
🌐
Font.Download
font.download › font › segoe-ui-this
Segoe UI This Font Family Download | Free Font.Download
May 6, 2026 - Download the Segoe UI This font for free to create great typography. Create a custom image with your own words. Embed the Segoe UI This font on your website with the @font-face feature.
🌐
CSS-Tricks
css-tricks.com › forums › topic › free-font-similar-to-segoe-ui
Free Font Similar to Segoe UI - CSS-Tricks
April 26, 2013 - A lot of people looking for a free font similar to Segoe UI and ended with OpenSans, Muli or NotoSans. But this one is very identical: http://en.fonts2u.com/weblysleek-ui-semibold.font ... Google renamed Open Sans to Noto Sans for some reason.
🌐
CSS Font Stack
cssfontstack.com › Segoe-UI
CSS Font Stack: Segoe UI Web Font
CSS: .class { font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif }
🌐
W3Schools
w3schools.com › w3css › tryit.asp
Font Segoe UI
The W3Schools online code editor allows you to edit code and view the result in your browser
🌐
Quora
quora.com › What-are-the-best-alternatives-to-Segoe-UI-Light-font
What are the best alternatives to Segoe UI Light font? - Quora
Answer (1 of 3): Lato is my go-to free sans-serif, and the 300 weight is similar to what you're looking for. Google Fonts Lato