List of fonts installed by default in versions of Windows?

Posted by Ricket on Stack Overflow See other posts from Stack Overflow or by Ricket
Published on 2010-04-13T04:37:06Z Indexed on 2010/04/13 4:42 UTC
Read the original article Hit count: 243

Filed under:
|

I've been seeing more and more websites using fancy antialiased fonts. Every time I hit one, I think to myself "hmm, what web-safe font is that?" - but after looking at the CSS I typically find some font name in quotes, like "Palatino Linotype". Obviously not web-safe, but according to the Wikipedia article, "Palatino Linotype is shipped with Windows 2000 or later, and Microsoft Office Professional Edition 2003." So that covers what, 95% of users that might visit your website? And thanks to the power of CSS, the website can fallback to a similar generic font typename such as 'serif' for non-Windows users with a line like this:

font: 16px/20px "Palatino Linotype", serif; 

Awesome! I want to start using fancy fonts!

Is there a set of lists out there, of the fonts that are preinstalled by default in Windows 98, 2000, NT, ME, XP, 2003, etc., and maybe for the Mac OSX versions and various Linux distributions as well? It would be a great reference for picking web font faces!

(if not, someone should compile it!)

I had never before heard of Palatino Linotype and I want to know what other fonts have existed since old Windows versions that I've never known about!

© Stack Overflow or respective owner

Related posts about css

Related posts about fonts