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