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