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