Hello,
I'm currently creating some epubs that use embedded fonts. My problem is that, while some fonts do show up in Adobe Digital Editions, others do not. I'm using the same code each time, just changing it for the appropriate font. The fonts themselves come from Google's Webfonts collection.
This is an example of my CSS:
Code:
@font-face {
font-family : 'FanwoodItalic';
src: url(../fonts/Fanwood/Fanwood-Italic-webfont.ttf);
font-style: normal;
}
h2 {
font-family: 'FanwoodItalic';
}
This example doesn't work in ADE, although the fonts show up every time in iBooks.
What am I doing wrong???
Thanks,