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