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