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