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