I am attempting to incorporate a custom font into my website. In my CSS file, I have the following:
body
{
font-family: HurmeGeometricSans4_SemiBold;
}
@font-face
{
font-family: HurmeGeometricSans4_SemiBold;
src: url(resources/Hurme_Design_-_HurmeGeometricSans4_SemiBold.otf);
}
The file is originally named "Hurme Design - HurmeGeometricSans4 SemiBold" and I purchased it with a web license from myfonts.com. The resources directory is located in the same directory as my style sheet. Can anyone spot any errors in what I'm doing here? I have tried numerous times but can't seem to make it work. This is primarily for use on mobile safari.