Quote:
Originally Posted by Brett Merkey
3) add font to rules e.g.
h2 {
font-size: 2em;
font-family: "Lobster", cursive;
color: #8f0bf4;
text-shadow: 2px 2px 2px #000;
}
|
I don't know of any software that would use a cursive font if Lobster didn't exist. Also, if Lobster didn't exist, then you have a serious issue with your ePub that needs to be fixed. So you can dump cursive. The CSS line you want is just
Code:
Font-family: "Lobster";
The only advantage I see in doing something like font-family: "font", sans-serif; means it's easy for me to just dump that line to just sans-serif if I don't want that font embedded.