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