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