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