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