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