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