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