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