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