Thread: verifying html
View Single Post
Old 08-30-2010, 02:26 PM   #23
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
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.
charleski is offline   Reply With Quote