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