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