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