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