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