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