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