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