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