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