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