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