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