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