Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will Segoe UI work on Mac?

Tags:

html

css

fonts

Is Segoe UI font built into the browser? If my visitors are viewing from Mac, will it work properly or do I have to set the CSS url for that? My designer says it will work only when we set the URL, however I removed the

@font-face
{
    font-family: "Segoe UI";
    src: url("fonts/Segoe UI.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

and it still works atleast on Windows 7. I don't have Mac though, to test.

like image 432
Jack Avatar asked Jan 21 '13 11:01

Jack


People also ask

Is Segoe UI compatible with Mac?

The Segoe UI font family is the official font for Microsoft and is used throughout Office 365 (including SharePoint). The font is included with all Windows and Office 365 installs for PCs; however, it is not included in Office 365 for Mac installs.

How do I install font on Mac?

Install fonts On your Mac, do any of the following: In the Font Book app , click the Add button in the Font Book toolbar, locate and select a font, then click Open. Drag the font file to the Font Book app icon in the Dock. Double-click the font file in the Finder, then click Install Font in the dialogue that appears.

Can I use Segoe UI?

Unfortunately, even now it is not possible to legally use any of the Segoe UI or Segoe WP family fonts in your own materials (commercially or otherwise), it is also impossible to take the ones installed with the Windows OS and make a web fonts out of them (I tried with FontSquirrel and they are on the block list) and ...

Is Segoe UI font free?

Is Segoe Ui Free? This amazing typeface is free to use for all your projects. In the start, Monotype licensed this typeface however, later it disassociated with the Monotype and Microsoft took the charge. You can use the font free for your all projects and designs.


2 Answers

The Segoe UI font is not built into a browser. It is shipped with some Microsoft software. On a Mac, it is most probably not available, though a user might have acquired it separately or as part of some software package.

You should remove the @font-face rule and the font files uploaded onto a server. Segoe UI is protected by copyright, and it must not be used as a web font without permission from the copyright holder, Microsoft (which probably won’t give a permission).

You will need some other strategy, such as using another font either as the basic font or as a fallback font for visitors who don’t have Segoe UI in their systems. The Google font Open Sans is rather similar to Segoe UI, and it’s free (and it comes in 10 styles, including Book, Normal, Semi-Bold, Bold, and Extra-Bold weight).

like image 129
Jukka K. Korpela Avatar answered Sep 18 '22 12:09

Jukka K. Korpela


It will work on any computer with Office 2007, 2010, Vista or 7:

The Segoe UI font family can be obtained as part of Microsoft Office 2007, Microsoft Office 2010, Windows Vista or Windows 7.

Will also work on XP if the user has downloaded a Windows Live package:

Segoe UI is installed into Windows XP if the user installs Windows Live Messenger, or Windows Live Mail

Source

For any computer that doesn't have the above, you will need to declare it with a @font-face

like image 31
Andy Avatar answered Sep 18 '22 12:09

Andy