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