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