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