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