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