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