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