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