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