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