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