Is it possible to change the font-size
of a source within @font-face
?
I'm trying the following:
@font-face {
font-family: kivetts;
src: url(fonts/kivettsregular.otf);
}
@font-face {
font-family: DicksHandwriting;
src: url(fonts/DicksHandwriting.otf);
font-size:1.5em;
}
.menu-image-title {
font-family: 'kivetts', DicksHandwriting
}
The first font does not have the character, so I want to use the O of the second, but the second font is smaller than the first one, so I need to increase it. If you know of any other way to solve this problem, please indicate a path. Thanks!