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