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