(Possibly a duplicate with Webfont in Windows Phone 8 HTML5 App... however, particularly Phonegap in question)
I am trying to use a custom web font in my app. It fails to load the font. (Cordova 2.3.0 & Windows Phone 8).
It appears like the css @font-face block is not loaded at all. No luck regardless which font format. Fonts added as 'content' in Build Action.
@font-face {
font-family: "SSPika";
src: url('ss-pika.eot');
src: url('ss-pika.eot?#iefix') format('embedded-opentype'),
url('ss-pika.woff') format('woff'),
url('ss-pika.ttf') format('truetype'),
url('ss-pika.svg#SSPika') format('svg');
font-weight: normal;
font-style: normal;
}
And similar to the other question, loading the same content remotely (in iframe) renders perfectly.
Any ideas?