I've been wanting to use a particular font on my webpage but it is a custom font that very few people will have in .TTF format.
The font appears to be downloading successfully but then does not display.
I used Microsoft WEFT to convert the TTF to .eot
In my <style> element i have the following code:
@font-face {
font-family: "Psycho Poetry";
font-style: normal;
font-weight: normal;
src: url(http://kill.it/killit/fonts/PSYCHOPO.eot);
}
i then use:
font-family: "Psycho Poetry", verdana, ......., sans-serif; for the relevent part of the page in the style sheet.
When the page is accessed it will display with verdana.
Has anyone tried this before?
Have I missed something?
Could it be a problem with conversion to .eot?
Any help will be greatly appreciated.