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