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