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