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