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