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