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