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