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