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