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