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