Alternativas if Google Fonts fail

Is there any way to have my website ready in the case of a failure of Google Fonts? Something as nonscript forJs

Surely you specify alternative fonts in your CSS?

eg

font-family: .Verdana, Arial, Helvetica, sans-serif;

When you define a font in the css, you should define fall-backs. First the font you want to use, then a “web-safe” font that most people will have on their system by default, as a final fall back, the font type, if the “web safe” one is not on the system, one of that type will be substituted.
Example:-

font-family: 'Special Elite', courier, monospace;
1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.