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