I want Calibri as my default font on my website, however, Safari is not displaying Calibri at all - even though I have it set in CSS. Safari is displaying Times New Roman.
I have the font-face CSS set, and it is working in IE, and Chrome. Here is what I have in my CSS:
@font-face{
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
src: url('https://pathtofile/calibri.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
I have also looked this up, and it looks like I may need a different file-type. If that is true, I'm not able to convert it as every converting software I've tried online states that Calibri is blocked and cannot be converted. Other answers seem a bit outdated for older versions of Safari, as well.
Any help is appreciated.