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