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