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