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