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