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