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