Prior art:
Is there a way to disable system fonts temporarily in any browser?
The only solution I can find is to name the font something that doesn't collide with local fonts. I don't like that solution cause:
I'd rather refer to fonts by correct name.
It doesn't work with inline fonts via stylesheet like how Google serves fonts.
So, anyone know how?
@font-face { font-family: main; src: local(...); }
is perfectly fine, and means you don't have to change a millionfont-family
instances just because because you decide to switch font. It is, in fact, good practice. 2) google serves fonts in several ways, including as normal CSS<link rel="stylesheet">
, which is by far the easiest to work with. – Tropho