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