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