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