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