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