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