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