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