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