Embedding a font is more than just adding a Font file
That is step 1
Then you need the appropriate @fontface to link it to a
font family
eg.
Code:
@font-face {
font-family: "Bembo Std";
src: url(../Fonts/BemboStd.otf);
font-style: normal;
font-weight: normal;
}
Then you need to have a style (stylesheet entry is best)
Code:
span.bembo{
font-family: "Bembo Std";
}
last each word/phrase needs to be wrapped in a
span
Code:
<span class="bembo">the words</span>
OH
and your reading devise MUST support some form of 'Use Publishers Styles'