You still need to define the font as italic in your @font-face
@font-face {
font-family: "Hand Me Down S (BRK)";
font-style: italic;
font-weight: normal;
src:url(../Fonts/handmeds.ttf) format(opentype);
}
.TurinTalk {
font-family: "Hand Me Down S (BRK)", sans-serif;
font-style: italic;
}
will work, but
@font-face {
font-family: "Hand Me Down S (BRK)";
font-style: normal;
font-weight: normal;
src:url(../Fonts/handmeds.ttf) format(opentype);
}
.TurinTalk {
font-family: "Hand Me Down S (BRK)", sans-serif;
font-style: italic;
}
won't.
|