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