I have two fonts that are currently in ttf format, i want to be able to use these of a website, I have seen some sites that have stated a source for the font, that the browser then downloads (I guess!). this font is in a .eot format, how do i go about getting th ttf font into a eot format?
and would i be right to say that the code for using this font would then be:
.normalText {
font-size:12px;
src: url(/INFAH.eot);
}
.boldText {
font-size:12px;
src: url(/INFAHB.eot);
}
I have got two fonts you see one bold and the other normal.
thanks in advance !
and would i be right to say that the code for using this font would then be:
.normalText {
font-size:12px;
src: url(/INFAH.eot);
}
.boldText {
font-size:12px;
src: url(/INFAHB.eot);
}
I have got two fonts you see one bold and the other normal.
thanks in advance !