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