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