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