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