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