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