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