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