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