Use on the webTotal Use [ 5722 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ba372090b1dd1afe06fb6e95a0d8bd0f?family=KuffieFREE" 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/ba372090b1dd1afe06fb6e95a0d8bd0f?family=KuffieFREE);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "KuffieFREE";
src: url("https://db.onlinewebfonts.com/t/ba372090b1dd1afe06fb6e95a0d8bd0f.eot");
src: url("https://db.onlinewebfonts.com/t/ba372090b1dd1afe06fb6e95a0d8bd0f.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ba372090b1dd1afe06fb6e95a0d8bd0f.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ba372090b1dd1afe06fb6e95a0d8bd0f.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ba372090b1dd1afe06fb6e95a0d8bd0f.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ba372090b1dd1afe06fb6e95a0d8bd0f.svg#KuffieFREE")format("svg");
}
2CSS rules to specify fonts
font-family: "KuffieFREE";