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