Hello,
Use this instead:
@font-face {
font-family: BArsia;
src: url('BArshia.eot'); /* for IE eot */
}
@font-face {
font-family: BArsia;
/* Works only in WOFF-enabled browsers like Firefox */
src: url('BArshia.woff') format('woff'),/* woff */
url('BArshia.ttf') format('truetype');/* ttf */
}
You need to replace all instances of the double quotes with single quotes and use single quotes in all url() rules.
I am using this method on http://i7media.net for the page title. I haven't bothered to make it work with IE yet but it is working in FF.
HTH,
Joe D.