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