Quote:
Originally Posted by ghastmxn
I'm getting the error "Unexpected missing generic font family"
|
That just means you have not specified a fallback font
You have added this...
@font-face {
font-family: "OpenDyslexic";
src: url(fonts/OpenDyslexic-Regular.otf);
}
Then you need to specify where the font is used. It is not enough just to embed the font file.
If you want the whole book, I would add it under the <body> tag
body {
display: block;
font-family: "OpenDyslexic", serif;
font-size: 1em;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
Check my post here and download the epub...
https://www.mobileread.com/forums/sh...76#post4458576