Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Latest commit

 

History

History
18 lines (11 loc) · 329 Bytes

no-custom-font.md

File metadata and controls

18 lines (11 loc) · 329 Bytes

Use a standard font

Rule Details

The biggest disadvantage of using non-standard font is that it instantly affects the overall rendering speed of your pages.

Example of incorrect code for this rule:

h4 { font-family: Code Pro; }

Alternative code for this rule:

h4 { font-family: sans-serif }