Possible Duplicate:
@font-face fonts only work on their own domain
I've been working on my blog template and i'm using @font-face, but it seems that the fonts doesn't load in Firefox. But it does on Chrome, IE, Safari
Here's the @font-face that i used
@font-face {
font-family: 'BebasNeueRegular';
src: url('https://sites.google.com/site/directorybesttheme/font/BebasNeue-webfont.eot');
src: url('https://sites.google.com/site/directorybesttheme/font/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
url('https://sites.google.com/site/directorybesttheme/font/BebasNeue-webfont.woff') format('woff'),
url('https://sites.google.com/site/directorybesttheme/font/BebasNeue-webfont.ttf') format('truetype'),
url('https://sites.google.com/site/directorybesttheme/font/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
font-weight: normal;
font-style: normal;
}
Any idea why and how to fix?