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