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