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