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