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