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