Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FixedSys & Terminal Fonts

Tags:

html

css

How come the font FixedSys and Terminal ONLY work on FireFox and not on any other major browser?

What's the deal? Is it because they are system fonts or am I missing something?

Thanks

like image 693
test Avatar asked Sep 11 '10 01:09

test


People also ask

Is Fixedsys font free?

fixedsys : Download For Free, View Sample Text, Rating And More On Fontsgeek.com.

What is a system font?

A system font or web-safe font is one that's already assumed to be on the vast majority of users' devices, with no need for a web font to be downloaded.


1 Answers

I know this is old, but I converted http://www.fixedsysexcelsior.com/ to a Webfont a while back.. the files are here:

http://jollo.org/archive/doir/fixedsys

css usage is:

@font-face {
font-family: 'FixedsysExcelsior301Regular';
src: url('fsex300-webfont.eot');
src: url('fsex300-webfont.eot?#iefix') format('embedded-opentype'),
     url('fsex300-webfont.woff') format('woff'),
     url('fsex300-webfont.ttf') format('truetype'),
     url('fsex300-webfont.svg#FixedsysExcelsior301Regular') format('svg');
font-weight: normal;
font-style: normal;
-webkit-font-smoothing:aliased;
font-smooth:never;
}

Firefox does have a little bit of trouble rendering it in some instances.. but this appears to be a bug with many webfonts (fonts appear blurry when the browser is a certain size, normal when another size.

like image 70
fanfare Avatar answered Oct 13 '22 03:10

fanfare