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