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