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