View Single Post
Old 07-20-2021, 09:44 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
In addition to theducks' comment, I Googled and downloaded a runic font and made a simple epub with the font embedded and a CSS that creates a class

The @font-face and the .runes are needed

Code:
@charset "utf-8";
/* Styles for Test */
@font-face {
  font-family: "Angerthas Moria";
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  src: url(../fonts/AngerthasMoria-lgLAD.ttf);
}

.runes {
    font-family: Angerthas Moria;
    font-weight: bold;
    font-size: 1.5em;
    
  }

HTH
Attached Thumbnails
Click image for larger version

Name:	Capture.JPG
Views:	188
Size:	82.2 KB
ID:	188262  
phossler is offline   Reply With Quote