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