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