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