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