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