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