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