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