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