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