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