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