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