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