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