I use some @font-face for my website,some fonts and some icon-font. Icon-font is working well, on desktop and mobile devices but the fonts (not icon-font) is not working on Windows Phone 8. what's the problem?
Download your font from here (@font-face
web type)
Copy your font file (extension: eot
,woff
,ttf
,svg
) to your destination path
Update CSS Style (base on relative font path)
@font-face {
font-family:"B Yekan";src:url("fonts/Body/BYekan.eot?") format("eot"),url("fonts/Body/BYekan.woff") format("woff"),url("fonts/Body/BYekan.ttf") format("truetype"),url("fonts/Body/BYekan.svg#BYekan") format("svg");
font-weight:normal;
font-style:normal;
}