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