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