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