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