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