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