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