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