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