Use on the webTotal Use [ 4716 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/79e7aa1cbd948c2f3c9ec3752e2bf4cd?family=EraserTwentyGuage" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/79e7aa1cbd948c2f3c9ec3752e2bf4cd?family=EraserTwentyGuage);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "EraserTwentyGuage";
src: url("https://db.onlinewebfonts.com/t/79e7aa1cbd948c2f3c9ec3752e2bf4cd.eot");
src: url("https://db.onlinewebfonts.com/t/79e7aa1cbd948c2f3c9ec3752e2bf4cd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/79e7aa1cbd948c2f3c9ec3752e2bf4cd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/79e7aa1cbd948c2f3c9ec3752e2bf4cd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/79e7aa1cbd948c2f3c9ec3752e2bf4cd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/79e7aa1cbd948c2f3c9ec3752e2bf4cd.svg#EraserTwentyGuage")format("svg");
}
2CSS rules to specify fonts
font-family: "EraserTwentyGuage";