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