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