Source fonts and terminal fonts

Why does the FixedSys font and Terminal ONLY work on FireFox, and not on any other main browser?

What a deal? Is it because they are system fonts or am I missing something?

thank

+4
source share
4 answers

Why does the FixedSys font and Terminal ONLY work on FireFox, and not on any other main browser?

What a deal? Is it because they are system fonts, or am I missing something?

, , . FF, . FixedSys Windows ( ). , , - . reset CSS .

+2

, , http://www.fixedsysexcelsior.com/ Webfont .. :

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

CSS :

@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 ... , , - ( , , .

+14

These fonts are not available everywhere (for example, Linux). If you want to display a monospaced text, use monospaceas a backup. By default, the standard monospaced font of the system is used.

+1
source

A very simple answer, CSS websafe fonts.

Check this link for a list of default HTML fonts.

0
source

Source: https://habr.com/ru/post/1764262/


All Articles