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