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