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