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