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