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