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