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