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