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