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