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