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