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