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