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