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