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