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