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