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