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