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