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