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