svg , woff and eot even (supported) font types? I am sure there is no .svg, and I have never heard of .woff and .eot. Just truetype should work in all browswers. (I'm not sure about the Macintosh, though)
the way the font works always works for me:
@font-face { font-family:alba; src:url(alba.ttf); }
Thus, no quotation marks are used here. What I suggest also to try for your case is to do it as
@font-face { font-family:Myriad Pro Regular; src:url(myriad.ttf); }
Make sure you always consider the difference between uppercase and lowercase letters! If the font file is called Myriad.ttf when entering myriad.ttf, it may not work in some browsers (versions).
source share