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