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