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