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