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