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