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