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