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