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