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