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