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