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