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