View Single Post
Old 11-29-2019, 07:19 AM   #4
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
FWIW, I have a series of folders with the font files and a font style sheet that I can just load all at once

Just link the style sheet and it'd done

Doesn't have to be the same font-family

Code:
/* ----------------------------------------------*/
/* Style sheet to use Georgia fonts -------------*/
/* ----------------------------------------------*/
html, body {
  font-family: "Georgia";
}
@font-face {
  font-family: "Georgia";
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/Georgia.ttf);
}
@font-face {
  font-family: "Georgia";
  font-weight: bold;
  font-style: normal;
  src: url(../fonts/Georgia_Bold.ttf);
}
@font-face {
  font-family: "Georgia";
  font-weight: normal;
  font-style: italic;
  src: url(../fonts/Georgia_Italic.ttf);
}
@font-face {
  font-family: "Georgia";
  font-weight: bold;
  font-style: italic;
  src: url(../fonts/Georgia_Bold_Italic.ttf);
}
phossler is offline   Reply With Quote