I\'m using two @font-face in CSSreset.css exactly like each other, and just one of them works! This is the style code:
@font-face {
font-family: \'B Mitr
Could it be the CSS selectors you're using? Does it work if you change your code to:
#Map_Eshterak {
font-family: 'BBCNassim';
}
And as a side-note, once you get this working you may want to give a font stack, in case your @font-face fonts don't load properly. (For example, font-family: 'BBCNassim', Helvetica, sans-serif;
will show Helvetica is BBCNassim isn't available)