Quote:
Originally Posted by rockster
How is that different than specifying the font in the Fonts section?
|
Fonts Section is what will be used when a generic is called or no font WAS specified in the stylesheet/book.
Styles is where you make your desires (font family) known. The font must be available (system or embedded in the book)
eg
Code:
@font-face {
font-family: Cinzel;
font-weight: normal;
font-style: normal;
src: url(fonts/00002.ttf);
}
and the Stylesheet call:
Code:
.first-letter2 {
float: left;
font-family: Cinzel, serif;
font-size: 300%;
font-style: normal;
font-weight: normal;
margin-right: 0.18em;
margin-top: -0.25em;
text-decoration: none;
text-transform: uppercase;
}
Note what i made bold
That is the fallback if the font is not available (should not be needed if embedded in the book)