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