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