View Single Post
Old 06-22-2015, 04:07 PM   #3
phossler
Wizard
phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.phossler ought to be getting tired of karma fortunes by now.
 
Posts: 1,087
Karma: 447222
Join Date: Jan 2009
Location: Valley Forge, PA, USA
Device: Kindle Paperwhite
I use the editor to add the file(s) to the epub and add this this CSS

Code:
@font-face {
  font-family: "Charis SIL Compact";
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/CharisSILR.ttf);
  }
@font-face {
  font-family: "Charis SIL Compact";
  font-weight: bold;
  font-style: normal;
  src: url(../fonts/CharisSILB.ttf);
  }
@font-face {
  font-family: "Charis SIL Compact";
  font-weight: normal;
  font-style: italic;
  src: url(../fonts/CharisSILI.ttf);
  }
@font-face {
  font-family: "Charis SIL Compact";
  font-weight: bold;
  font-style: italic;
  src: url(../fonts/CharisSILBI.ttf);
  }
body {
  font-family: "Charis SIL Compact", serif;
}
phossler is offline   Reply With Quote