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