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