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