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