Hello,
I’m using Supreme for RTL language and now I wish to use my special font on my website.
I used the following code but after in IE and Mozilla not loading the my font and show the text in Arial format.
@font-face {
font-family: ‘BYekan’;
font-style: normal;
src: url(http://www.pcwar.com/fonts/BYekan.eot);
src: local(‘BYekan’), url(http://www.pcwar.com/fonts/BYekan.eot) format(’embedded-opentype’), url(http://www.pcwar.com/fonts/BYekan.woff) format(‘woff’);
}
This code also I try but not working too: (fonts uploaded in fonts folder in theme folder)
@font-face {
font-family: ‘BYekan’;
src:url(‘fonts/BYekan.eot?#’) format(‘eot’),
url(‘fonts/BYekan.woff’) format(‘woff’),
url(‘fonts/BYekan.ttf’) format(‘truetype’);
}