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