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