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