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