Good catch. I did not think to even look at the full paths. So the first screenshot is the correct one, right?
Quote:
Originally Posted by BeckyEbook
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");
}
|