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