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