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