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