Ask the browser to use Helvetica Neue if it's available on the system

Hey guys!
I want to use Helvetica Neue if it’s system-installed (I don’t want to load it - this font is commercial property and is not allowed to use without proper licensing for usage) and fall back to some other sans-serif font like Arial if it’s not. How can I do it?

Anybody, guys? Really need to find a solution for this problem.

All you need is CSS custom code added to the before body (head).

Example:

body {font-family: "Helvetica Neue", sans-serif;}

Brilliant! How would it look like if I want to use Helvetica if it’s system-installed, and if not, then Arial?

Please look at the documentation for font-family. It answers your question.

1 Like