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