I wanted to use a font by using the following @font-face rule:
@font-face {
font-family: 'Web Symbols';
font-style: normal;
font-weight: 400;
src: local('Web Symbols'), local('WebSymbols'), url(http://localhost/Blog/webfonts/WebSymbols-Regular.otf) format('opentype');
}
But this does not work, FF does not use the right font, although it knows it:
But interestingly it uses the font, when I remove 1(!) comma from the src
-rule, no matter which of both commas. Is this a bug in Firefox or am I doing something wrong? I also compared my font-face
with some provided by Google but was not able to find any differences.