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