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