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