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