View Single Post
Old 01-18-2022, 11:09 AM   #5
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 843
Karma: 3335974
Join Date: Jan 2017
Location: Poland
Device: Various
If css styles are in root, fonts in "Fonts", you can fix paths to font files:
Code:
@font-face {
font-family: "Mekorot-Rashi";
font-weight: normal;
font-style: normal;
src: url("Fonts/Mekorot-Rashi.ttf");
}
@font-face {
font-family: "David CLM";
font-weight: normal;
font-style: normal;
src: url("Fonts/DavidCLM-Medium.otf");
}
@font-face {
font-family: "David CLM";
font-weight: bold;
font-style: normal;
src: url("Fonts/DavidCLM-Bold.otf");
}
BeckyEbook is offline   Reply With Quote