Local Font Source

Use local fonts before downloading remote fonts.

Preview

Code

<style>
@font-face{
font-family:"LocalFont";
src:
local("Arial"),
url("font.woff2") format("woff2");
}

p{
font-family:"LocalFont", sans-serif;
}
</style>

<p>Local font fallback</p>

More CSS Custom Fonts Examples (8)