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