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