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