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