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