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