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