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