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