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