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