Quote:
Originally Posted by RbnJrg
I think the error message is due to a bad definition of the class .alkaios. Try with this definition:
.alkaios {
font-family: "alkaios";
font-weight: normal;
font-style: normal;
}
You don't have to include (in that class) "src: url('../Fonts/alkaios-regular.ttf');". That is because "src" is not a valid property for a class (is a valid property for a @font definition).
|
What you are suggesting is incorrect.
Code:
@font-face {
font-family: alkaios;
font-style: normal;
font-weight: normal;
src: url(../Fonts/alkaios-regular.ttf);
}
That is correct and if you had read my message, you would notice that it is Sigil's fault for using the wrong CSS validation version.