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