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