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