There are 2 particular fonts that are pre-installed. They render fine in Chrome, but not in Firefox. So I included the fonts using @font-face
so they would be downloaded.
CSS:
@font-face
{
font-family:Elephant;
src:url('/Styles/Fonts/elephant.ttf');
font-family:Harrington;
src:url('/Styles/Fonts/Harrington.ttf');
}
.title
{
font-family:Elephant;
}
.title2
{
font-family:Harrington;
}
They still don't work in Firefox. What do I need to do?