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