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