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