Search code examples
csswindowsmacosfontsfont-face

Assigning a different font for different Operating Systems


I currently have a question, neither google search nor Stackoverflowsearch helped. I'm currently experiencing a few troubles with different font displaying on Macs and PCs. Now my question is: Am I able to assing a different font for Windows users than for Mac users?


Solution

  • you can use javascript :

    if(navigator.userAgent.indexOf('Mac') > 0)
    $('body').addClass('mac-os');
    

    that will make the body take the class (mac-os) if the user on mac

    and you can add the custom font in the class