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