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