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