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