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