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