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