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