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