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