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