Does PhoneGap support web fonts, and if so how do you use them. I\'ve currently got this code in my page, but it doesn\'t work when loaded into the emulator (inside an android a
I've had no problem getting PhoneGap to recognize web fonts. If WebKit will do it then Android and iOS will do it. In a project I'm working on now, currently only tested on Android:
@font-face{
font-family: MyFont;
src: url('../fonts/my_font.ttf') format('truetype');
src: url('../fonts/my_font.otf') format('opentype');
then on a style as
font-family:MyFont, arial, sans-serif;