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